/* ============================================
   (주)함께 HAMKKE GROUP
   Light & Premium Stylesheet
   ============================================ */

:root {
  /* Core palette */
  --navy:     #1b2b4b;
  --navy2:    #253658;
  --navy3:    #2e4170;
  --gold:     #b8924a;
  --gold2:    #d4ac6e;
  --gold-lt:  #f5ecd9;
  --white:    #ffffff;
  --off:      #f8f7f4;
  --off2:     #f1efe9;
  --ink:      #1a1f2e;
  --ink2:     #3d4461;
  --muted:    #8a90a8;
  --line:     rgba(0,0,0,0.08);
  --line-lt:  rgba(0,0,0,0.05);

  /* Brand colors */
  --b-blue:   #1b4fa8;
  --b-green:  #1a7a50;
  --b-red:    #9b2626;
  --b-coral:  #b84030;

  /* Typography */
  --serif:  'Cormorant Garamond', 'Noto Serif KR', Georgia, serif;
  --sans:   'Noto Sans KR', 'Inter', sans-serif;
  --en:     'Inter', sans-serif;

  /* Motion */
  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease2:  cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}
a  { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul  { list-style: none; }
button { cursor: none; border: none; background: none; font-family: var(--sans); }

/* ---- Custom Cursor ---- */
.cursor {
  position: fixed; width: 7px; height: 7px;
  background: var(--navy); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: background .2s;
  mix-blend-mode: multiply;
}
.cursor-follower {
  position: fixed; width: 32px; height: 32px;
  border: 1.5px solid rgba(27,43,75,.3);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease), width .3s, height .3s, border-color .3s;
}
body.hovering .cursor-follower { width: 52px; height: 52px; border-color: var(--gold); }

/* ---- Loader ---- */
.loader {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .7s var(--ease), visibility .7s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--en); font-size: 2rem; font-weight: 900;
  letter-spacing: .3em; color: #fff; margin-bottom: 28px;
}
.loader-bar { width: 180px; height: 1px; background: rgba(255,255,255,.15); margin: 0 auto; overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--gold); animation: lfill 1.5s var(--ease) forwards; }
@keyframes lfill { to { width: 100%; } }

/* ---- Header ---- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 26px 64px;
  transition: padding .4s var(--ease), background .4s, box-shadow .4s;
}
.header.scrolled {
  padding: 14px 64px;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line), 0 8px 32px rgba(0,0,0,.05);
}
.header-wrap { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-kr {
  font-family: var(--serif); font-size: 1.45rem; font-weight: 700;
  color: var(--white); letter-spacing: .05em;
  transition: color .3s;
}
.header.scrolled .logo-kr { color: var(--navy); }
.logo-divider { color: rgba(255,255,255,.25); font-size: .75rem; transition: color .3s; }
.header.scrolled .logo-divider { color: var(--line); }
.logo-en {
  font-family: var(--en); font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; color: rgba(255,255,255,.55);
  transition: color .3s;
}
.header.scrolled .logo-en { color: var(--muted); }

.gnb { display: flex; align-items: center; gap: 2px; }
.gnb-item {
  font-size: .84rem; font-weight: 500;
  color: rgba(255,255,255,.7);
  padding: 8px 16px; border-radius: 100px;
  transition: color .2s, background .2s;
  letter-spacing: .02em;
}
.gnb-item:hover { color: #fff; background: rgba(255,255,255,.1); }
.header.scrolled .gnb-item { color: var(--ink2); }
.header.scrolled .gnb-item:hover { color: var(--navy); background: var(--off); }
.gnb-item--ceo {
  color: var(--gold2) !important;
  border: 1px solid rgba(184,146,74,.3);
}
.gnb-item--ceo:hover { background: rgba(184,146,74,.1) !important; color: var(--gold2) !important; }
.header.scrolled .gnb-item--ceo { color: var(--gold) !important; border-color: rgba(184,146,74,.4); }
.header.scrolled .gnb-item--ceo:hover { background: var(--gold-lt) !important; }
.gnb-cta {
  font-size: .82rem; font-weight: 700;
  color: var(--white); background: var(--navy);
  padding: 9px 24px; border-radius: 2px; margin-left: 12px;
  transition: background .2s, transform .2s;
  letter-spacing: .04em;
}
.gnb-cta:hover { background: var(--navy3); transform: translateY(-1px); }
.header.scrolled .gnb-cta { background: var(--navy); }

.burger { display: none; flex-direction: column; gap: 6px; padding: 8px; z-index: 1100; }
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--white); transition: transform .3s, opacity .3s;
}
.header.scrolled .burger span { background: var(--navy); }

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy);
  z-index: 1050; flex-direction: column;
  justify-content: center; align-items: center;
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
  display: flex;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 700;
  color: rgba(255,255,255,.8); padding: 10px 28px;
  transition: color .2s;
}
.mobile-menu nav a:hover { color: var(--gold2); }
.mobile-menu-foot { margin-top: 48px; text-align: center; }
.mobile-menu-foot p { font-size: .8rem; color: rgba(255,255,255,.3); margin: 4px 0; }

/* ============================
   HERO
   ============================ */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  overflow: hidden; background: var(--navy);
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-img-wrap { position: absolute; inset: 0; }
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transform: scale(1.06);
  transition: transform 8s var(--ease);
}
.hero.loaded .hero-bg-img { transform: scale(1); }

/* Lighter overlay — image breathes */
.hero-dim {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(27,43,75,.18) 0%,
    rgba(27,43,75,.35) 35%,
    rgba(27,43,75,.72) 70%,
    rgba(27,43,75,.95) 100%
  );
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.03'/%3E%3C/svg%3E");
  opacity: .35;
}

.hero-body {
  position: relative; z-index: 2;
  padding: 0 64px 140px; max-width: 920px;
}
.hero-eyebrow {
  font-family: var(--en); font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; color: var(--gold2);
  margin-bottom: 24px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s .3s var(--ease2), transform .8s .3s var(--ease2);
}
.hero.loaded .hero-eyebrow { opacity: 1; transform: none; }

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7.5vw, 6.8rem);
  font-weight: 700; line-height: 1.06;
  color: var(--white); letter-spacing: -.01em;
  margin-bottom: 28px;
}
.hero-headline .line {
  display: block;
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease2), transform .9s var(--ease2);
}
.hero.loaded .hero-headline .line:nth-child(1) { opacity:1; transform:none; transition-delay:.5s; }
.hero.loaded .hero-headline .line:nth-child(2) { opacity:1; transform:none; transition-delay:.65s; }
.hero-headline .accent { color: var(--gold2); }

.hero-sub {
  font-size: clamp(.88rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.65); line-height: 1.95;
  font-weight: 300; letter-spacing: .04em; margin-bottom: 40px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s .85s var(--ease2), transform .8s .85s var(--ease2);
}
.hero.loaded .hero-sub { opacity: 1; transform: none; }
.hero-sub em {
  font-style: normal;
  color: var(--gold2);
  font-weight: 600;
  letter-spacing: .06em;
}
.hero-sub strong {
  color: var(--white);
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: .02em;
}

.hero-actions {
  display: flex; align-items: center; gap: 24px;
  opacity: 0; transform: translateY(16px);
  transition: opacity .8s 1s var(--ease2), transform .8s 1s var(--ease2);
}
.hero.loaded .hero-actions { opacity: 1; transform: none; }

.btn-hero-prim {
  font-size: .86rem; font-weight: 700; letter-spacing: .06em;
  color: var(--navy); background: var(--white);
  padding: 14px 38px; border-radius: 2px;
  transition: background .2s, color .2s, transform .2s;
  border: 1.5px solid var(--white);
}
.btn-hero-prim:hover { background: var(--gold2); border-color: var(--gold2); transform: translateY(-2px); }
.btn-hero-sec {
  display: flex; align-items: center; gap: 10px;
  font-size: .86rem; font-weight: 500; letter-spacing: .06em;
  color: rgba(255,255,255,.75);
  padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,.25);
  transition: color .2s, border-color .2s, gap .2s;
}
.btn-hero-sec:hover { color: var(--white); border-color: rgba(255,255,255,.7); gap: 16px; }

/* KPI bar */
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
}
.hero-kpi {
  display: flex;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.12);
}
.kpi-item {
  flex: 1; padding: 22px 0; text-align: center;
  border-right: 1px solid rgba(255,255,255,.08);
  opacity: 0; transform: translateY(12px);
  transition: opacity .6s var(--ease2), transform .6s var(--ease2);
}
.kpi-item:last-child { border-right: none; }
.hero.loaded .kpi-item:nth-child(1) { opacity:1; transform:none; transition-delay:1.1s; }
.hero.loaded .kpi-item:nth-child(2) { opacity:1; transform:none; transition-delay:1.2s; }
.hero.loaded .kpi-item:nth-child(3) { opacity:1; transform:none; transition-delay:1.3s; }
.hero.loaded .kpi-item:nth-child(4) { opacity:1; transform:none; transition-delay:1.4s; }
.kpi-num  { font-family: var(--en); font-size: 1.9rem; font-weight: 800; color: var(--white); line-height: 1; }
.kpi-u    { font-family: var(--en); font-size: .8rem; font-weight: 700; color: var(--gold2); }
.kpi-l    { display: block; font-size: .7rem; color: rgba(255,255,255,.4); letter-spacing: .06em; margin-top: 6px; }

.hero-scroll-hint {
  position: absolute; right: 64px; bottom: 88px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-hint span {
  font-family: var(--en); font-size: .6rem; font-weight: 600;
  letter-spacing: .2em; color: rgba(255,255,255,.3); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(184,146,74,.6), transparent);
  animation: spulse 2s ease-in-out infinite;
}
@keyframes spulse {
  0%,100%{ transform:scaleY(0); transform-origin:top; opacity:0; }
  40%    { transform:scaleY(1); transform-origin:top; opacity:1; }
  80%    { transform:scaleY(1); transform-origin:bottom; opacity:0; }
}

/* ============================
   STATEMENT / ABOUT
   ============================ */
.statement {
  background: var(--navy);
  padding: 120px 64px;
  position: relative; overflow: hidden;
}
.statement::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,74,.07) 0%, transparent 70%);
  pointer-events: none;
}
.statement-wrap {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
  padding-top: 72px;
  border-top: 1px solid rgba(255,255,255,.08);
  position: relative; z-index: 1;
}
.st-label {
  font-family: var(--en); font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; color: rgba(255,255,255,.3); margin-bottom: 28px;
}
.st-quote {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 600; color: var(--white);
  line-height: 1.38; letter-spacing: -.01em;
}
.st-quote em {
  font-style: normal;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1px;
}
.st-sub-quote {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 400;
  color: var(--ink2);
  line-height: 1.7;
  letter-spacing: -.01em;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.st-sub-quote em {
  font-style: normal;
  color: var(--gold);
  font-weight: 600;
}
.st-body {
  font-size: .95rem; font-weight: 300;
  color: rgba(255,255,255,.55); line-height: 2; margin-bottom: 20px;
}
.st-body strong { color: var(--gold2); font-weight: 600; }
.st-values { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px; }
.sv {
  border: 1px solid rgba(255,255,255,.15);
  padding: 7px 20px; border-radius: 100px;
  transition: border-color .2s, background .2s;
}
.sv:hover { border-color: var(--gold); background: rgba(184,146,74,.15); }
.sv:hover span { color: var(--gold2); }
.sv span {
  font-family: var(--serif); font-size: .9rem; font-weight: 600;
  color: rgba(255,255,255,.5); letter-spacing: .04em; transition: color .2s;
}

/* ============================
   AOS
   ============================ */
[data-aos],[data-aos-left],[data-aos-right]{
  opacity:0;
  transition: opacity .85s var(--ease2), transform .85s var(--ease2);
}
[data-aos]       { transform: translateY(44px); }
[data-aos-left]  { transform: translateX(-40px); }
[data-aos-right] { transform: translateX(40px); }
[data-aos].visible,[data-aos-left].visible,[data-aos-right].visible{
  opacity:1; transform:none;
}

/* ============================
   BRANDS
   ============================ */
.brands { background: var(--off); }
.brands-head {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 64px 64px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brands-head-right {
  font-size: .88rem; font-weight: 300; color: var(--muted);
  max-width: 320px; text-align: right; line-height: 1.8;
}

.sec-label {
  font-family: var(--en); font-size: .64rem; font-weight: 700;
  letter-spacing: .2em; color: var(--gold); margin-bottom: 16px;
}
.sec-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.15; letter-spacing: -.02em;
}
.sec-title--light { color: var(--white); }

/* Brand rows */
.brand-row {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 580px; overflow: hidden;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.brand-row--rev { direction: rtl; }
.brand-row--rev > * { direction: ltr; }

.brand-row-img { position: relative; overflow: hidden; }
.brand-row-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transition: transform .8s var(--ease);
}
.brand-row:hover .brand-row-img img { transform: scale(1.04); }

/* 브랜드별 포지션 최적화 */
#brand01 .brand-row-img img { object-position: center 40%; }
#brand02 .brand-row-img img { object-position: center 30%; }
#brand03 .brand-row-img img { object-position: center 50%; }
#brand04 .brand-row-img img { object-position: center 35%; }

/* Lighter overlay */
.brand-row-img-dim {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(27,43,75,.15) 0%,
    rgba(27,43,75,.04) 60%,
    transparent 100%
  );
}
.brand-row--rev .brand-row-img-dim {
  background: linear-gradient(
    to left,
    rgba(27,43,75,.15) 0%,
    rgba(27,43,75,.04) 60%,
    transparent 100%
  );
}
.brand-row-num {
  position: absolute; bottom: 28px; right: 28px;
  font-family: var(--en); font-size: 5rem; font-weight: 900;
  color: rgba(255,255,255,.1); line-height: 1; pointer-events: none;
}
.coming-badge {
  position: absolute; top: 28px; left: 28px;
  font-family: var(--en); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; color: var(--white);
  background: var(--gold); padding: 5px 14px; border-radius: 100px;
}

.brand-row-body {
  padding: 72px 80px;
  background: var(--white);
  display: flex; flex-direction: column; justify-content: center;
}
.brand-row--rev .brand-row-body { background: var(--off); }

.brand-row-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--en); font-size: .62rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); background: rgba(27,43,75,.07);
  border-left: 2px solid var(--navy);
  padding: 5px 14px; margin-bottom: 24px; width: fit-content;
}
.brand-row-tag--green { color: var(--b-green); background: rgba(26,122,80,.07); border-color: var(--b-green); }
.brand-row-tag--red   { color: var(--b-red);   background: rgba(155,38,38,.07); border-color: var(--b-red); }
.brand-row-tag--coral { color: var(--b-coral); background: rgba(184,64,48,.07); border-color: var(--b-coral); }

.brand-row-name {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 700; color: var(--ink);
  line-height: 1.1; margin-bottom: 24px; letter-spacing: -.01em;
}
.brand-row-name em {
  display: block; font-style: normal;
  font-family: var(--en); font-size: .5em; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-top: 7px;
}
.brand-row-desc {
  font-size: .92rem; font-weight: 300;
  color: var(--ink2); line-height: 2; margin-bottom: 28px;
}
.brand-row-desc strong { color: var(--navy); font-weight: 600; }
.brand-row-list { margin-bottom: 36px; }
.brand-row-list li {
  font-size: .84rem; color: var(--ink2);
  padding: 8px 0; border-bottom: 1px solid var(--line-lt);
  display: flex; align-items: flex-start; gap: 10px;
}
.brand-row-list li::before {
  content: '—'; color: var(--gold); font-size: .7rem; flex-shrink: 0; margin-top: 1px;
}
.brand-row-metrics {
  display: flex; gap: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.metric { flex: 1; padding: 16px 0; text-align: center; border-right: 1px solid var(--line); }
.metric:last-child { border-right: none; }
.metric strong {
  display: block; font-family: var(--en); font-size: 1.25rem; font-weight: 800;
  color: var(--navy); margin-bottom: 4px;
}
.metric span { font-size: .7rem; color: var(--muted); letter-spacing: .05em; }

.brand-row-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--navy); border-bottom: 1px solid rgba(27,43,75,.25);
  padding-bottom: 3px; width: fit-content;
  transition: gap .2s, border-color .2s, color .2s;
}
.brand-row-link:hover { gap: 16px; border-color: var(--navy); }
.brand-row-link--green { color: var(--b-green); border-color: rgba(26,122,80,.25); }
.brand-row-link--green:hover { border-color: var(--b-green); }
.brand-row-link--red   { color: var(--b-red); border-color: rgba(155,38,38,.25); }
.brand-row-link--red:hover { border-color: var(--b-red); }
.brand-row-link--coral { color: var(--b-coral); border-color: rgba(184,64,48,.25); }
.brand-row-link--coral:hover { border-color: var(--b-coral); }

/* ============================
   PROCESS
   ============================ */
.process {
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.process-bg { position: absolute; inset: 0; }
.process-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .1; }
.process-dim { position: absolute; inset: 0; background: var(--navy); opacity: .85; }

.process-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 64px;
}

/* 헤더 */
.process-inner .sec-label { color: var(--gold2); margin-bottom: 16px; }
.process-inner .sec-title { color: var(--white); margin-bottom: 80px; }

/* 가로 스크롤 리스트 */
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: background .25s;
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,.07); }
.why-num {
  font-family: var(--en);
  font-size: .65rem; font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold2);
  flex: 0 0 36px;
}
.why-icon {
  flex: 0 0 48px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold2);
  transition: background .25s;
}
.why-item:hover .why-icon { background: rgba(184,146,74,.18); }
.why-title {
  flex: 0 0 220px;
  font-family: var(--serif);
  font-size: 1.15rem; font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.why-desc {
  flex: 1;
  font-size: .85rem; font-weight: 300;
  color: rgba(255,255,255,.45);
  line-height: 1.85;
}
.why-arrow {
  flex: 0 0 auto;
  font-size: .75rem;
  color: rgba(255,255,255,.15);
  transition: color .25s, transform .25s;
}
.why-item:hover .why-arrow {
  color: var(--gold2);
  transform: translateX(5px);
}

/* ============================
   HISTORY
   ============================ */
.history { background: var(--off); }
.history-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 120px 64px;
}
.history-inner .sec-label { color: var(--muted); margin-bottom: 16px; }
.history-inner .sec-title { color: var(--ink); margin-bottom: 0; }

.history-title-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 80px; gap: 24px;
}
.history-page-links {
  display: flex; gap: 10px; flex-shrink: 0; padding-bottom: 4px;
}
.hpl-btn {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line);
  padding: 10px 20px; border-radius: 2px;
  font-size: .78rem; font-weight: 500; color: var(--ink2);
  background: var(--white);
  transition: all .22s;
}
.hpl-btn i { font-size: .75rem; color: var(--muted); transition: color .22s; }
.hpl-btn:hover {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.hpl-btn:hover i { color: var(--gold2); }

/* 연혁 리스트 */
.hl-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hl-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  align-items: stretch;
  gap: 0;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.hl-item:first-child { border-top: 1px solid var(--line); }

/* 연도 */
.hl-year {
  font-family: var(--en);
  font-size: 2rem; font-weight: 800;
  color: var(--line);
  line-height: 1;
  padding-top: 4px;
  letter-spacing: -.02em;
  transition: color .3s;
}
.hl-item:hover .hl-year { color: var(--navy); }
.hl-year--live { color: var(--gold) !important; }

/* 세로선 + 점 */
.hl-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 8px;
}
.hl-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--off2);
  border: 2px solid var(--line);
  flex-shrink: 0;
}
.hl-dot--live {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184,146,74,.15);
  animation: dpulse 2.5s ease infinite;
}
@keyframes dpulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(184,146,74,.15); }
  50%     { box-shadow: 0 0 0 9px rgba(184,146,74,.04); }
}

/* 내용 */
.hl-content { padding-left: 32px; }
.hl-content h4 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 700;
  color: var(--ink); margin-bottom: 16px;
}
.hl-content ul { display: flex; flex-direction: column; gap: 0; }
.hl-content ul li {
  font-size: .85rem; font-weight: 300; color: var(--ink2);
  padding: 7px 0;
  border-bottom: 1px solid var(--line-lt);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.6;
}
.hl-content ul li:last-child { border-bottom: none; }
.hl-content ul li::before {
  content: '—';
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ============================
   VISION
   ============================ */
.vision {
  position: relative; overflow: hidden;
  min-height: 80vh; display: flex; align-items: center;
  padding: 140px 64px;
}
.vision-bg { position: absolute; inset: 0; }
.vision-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
/* Light gradient — not pitch black */
.vision-dim {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27,43,75,.88) 0%,
    rgba(27,43,75,.65) 60%,
    rgba(27,43,75,.80) 100%
  );
}
.vision-body {
  position: relative; z-index: 2;
  max-width: 800px; margin: 0 auto; text-align: center;
}
.vision-body .sec-label { color: var(--gold2); }
.vision-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  font-weight: 600; color: var(--white);
  line-height: 1.35; letter-spacing: -.01em; margin-bottom: 12px;
}
.vision-accent {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 700; color: var(--gold2);
  line-height: 1; margin-bottom: 44px; letter-spacing: -.02em;
}
.vision-desc {
  font-size: .96rem; font-weight: 300;
  color: rgba(255,255,255,.6); line-height: 2; margin-bottom: 56px;
}
.vision-desc strong { color: var(--white); font-weight: 500; }
.vision-statements { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.vs-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px; padding: 20px 32px; text-align: left; min-width: 270px;
  backdrop-filter: blur(6px);
}
.vs-label {
  display: block; font-family: var(--en); font-size: .6rem;
  font-weight: 700; letter-spacing: .16em; color: var(--gold2); margin-bottom: 8px;
}
.vs-item p { font-size: .88rem; color: var(--white); font-weight: 500; line-height: 1.6; font-family: var(--serif); }

/* ============================
   CONTACT
   ============================ */
.contact { background: var(--off); padding: 120px 0; }
.contact-wrap {
  max-width: 1280px; margin: 0 auto; padding: 0 64px;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start;
}
.contact-left .sec-label { color: var(--muted); }
.contact-left .sec-title { color: var(--ink); margin-bottom: 20px; }
.contact-sub { font-size: .93rem; font-weight: 300; color: var(--ink2); line-height: 1.9; margin-bottom: 48px; }
.contact-info { margin-bottom: 44px; }
.ci { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.ci i { font-size: .76rem; color: var(--gold); flex-shrink: 0; margin-top: 4px; width: 16px; }
.ci span { font-size: .88rem; color: var(--ink2); line-height: 1.7; }
.ceo-link-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: var(--white);
  padding: 13px 22px; border-radius: 2px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  margin-bottom: 40px;
  transition: background .2s, transform .2s;
}
.ceo-link-btn:hover { background: var(--navy2); transform: translateY(-2px); }
.ceo-link-btn .fa-user-tie { color: var(--gold2); }
.ceo-link-btn .fa-arrow-right { font-size: .65rem; margin-left: 4px; }
.brand-links { display: flex; flex-direction: column; }
.bl-item {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .88rem; font-weight: 500; color: var(--ink);
  padding: 14px 0; border-bottom: 1px solid var(--line);
  transition: color .2s, padding-left .2s;
}
.bl-item:hover { color: var(--navy); padding-left: 6px; }
.bl-item--muted { color: var(--muted); }
.bl-item i { font-size: .7rem; color: var(--muted); transition: color .2s; }
.bl-item:hover i { color: var(--navy); }

/* Form */
.cform {
  background: var(--white); padding: 52px 48px;
  box-shadow: 0 32px 80px rgba(27,43,75,.08);
  border-radius: 3px; border-top: 3px solid var(--navy);
}
.cform-done {
  display: none; background: var(--white); padding: 80px 48px;
  box-shadow: 0 32px 80px rgba(27,43,75,.08);
  border-radius: 3px; text-align: center;
  border-top: 3px solid var(--b-green);
}
.cform-done i { font-size: 2.8rem; color: var(--b-green); margin-bottom: 20px; }
.cform-done h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); margin-bottom: 12px; }
.cform-done p { font-size: .88rem; color: var(--muted); }
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cform-field { margin-bottom: 18px; }
.cform-field label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.cform-field input,
.cform-field select,
.cform-field textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid rgba(0,0,0,.1); border-radius: 2px;
  font-family: var(--sans); font-size: .9rem;
  color: var(--ink); background: var(--off);
  outline: none; appearance: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.cform-field input:focus,
.cform-field select:focus,
.cform-field textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,75,.07);
  background: var(--white);
}
.cform-field input::placeholder,
.cform-field textarea::placeholder { color: rgba(0,0,0,.22); }
.cform-field textarea { resize: vertical; min-height: 120px; }
.cform-submit {
  width: 100%; padding: 15px;
  background: var(--navy); color: var(--white);
  font-family: var(--sans); font-size: .86rem; font-weight: 700;
  letter-spacing: .06em; border-radius: 2px; cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 4px;
}
.cform-submit:hover { background: var(--navy3); transform: translateY(-2px); }
.cform-notice { font-size: .73rem; color: var(--muted); text-align: center; margin-top: 14px; line-height: 1.6; }

/* ============================
   FOOTER
   ============================ */
/* ============================
   BRAND BANNER
   ============================ */
.brand-banner {
  background: #0a1120;
  padding: 64px 64px 72px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.brand-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.bb-eyebrow {
  font-family: var(--en);
  font-size: .5rem;
  font-weight: 700;
  letter-spacing: .35em;
  color: rgba(255,255,255,.2);
  margin-bottom: 36px;
}
.bb-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.07);
}
.bb-card {
  background: #0a1120;
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-decoration: none;
  position: relative;
  transition: background .25s;
  overflow: hidden;
  min-width: 0;
}
.bb-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--dot-color, rgba(255,255,255,.1));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.bb-card:hover { background: rgba(255,255,255,.03); }
.bb-card:hover::after { transform: scaleX(1); }
/* 컬러 도트 */
.bb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
/* 워드마크 */
.bb-wordmark {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.bb-wm-main {
  font-family: var(--en);
  font-size: clamp(.72rem, 1.1vw, .95rem);
  font-weight: 800;
  color: rgba(255,255,255,.85);
  letter-spacing: .01em;
  line-height: 1.3;
  white-space: normal;
  word-break: keep-all;
}
.bb-wm-main em {
  font-style: normal;
  color: #f5c842; /* default gold, overridden inline */
}
.bb-wm-sub {
  font-family: var(--sans, 'Noto Sans KR', sans-serif);
  font-size: .68rem;
  font-weight: 300;
  color: rgba(255,255,255,.3);
  letter-spacing: .02em;
}
/* 호버 시 워드마크 컬러 살짝 밝게 */
.bb-card:hover .bb-wm-main { color: rgba(255,255,255,1); }
.bb-card:hover .bb-wm-sub  { color: rgba(255,255,255,.5); }


/* FOOTER */
.footer { background: var(--navy); color: rgba(255,255,255,.45); }
.footer-top {
  max-width: 1280px; margin: 0 auto; padding: 80px 64px 56px;
  display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-logo {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
}
.footer-logo span {
  display: block; font-family: var(--en); font-size: .58rem;
  font-weight: 700; letter-spacing: .2em;
  color: rgba(255,255,255,.28); margin-top: 5px;
}
.footer-brand p { font-size: .8rem; color: rgba(255,255,255,.28); margin-top: 10px; font-family: var(--serif); }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.fc h5 {
  font-family: var(--en); font-size: .62rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.55); margin-bottom: 18px;
}
.fc a {
  display: block; font-size: .82rem; color: rgba(255,255,255,.35);
  margin-bottom: 10px; transition: color .2s; line-height: 1.6;
}
.fc a:hover { color: var(--gold2); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding: 26px 64px; }
.footer-bottom p { font-size: .72rem; color: rgba(255,255,255,.18); letter-spacing: .04em; }

/* Scroll-top */
.stb {
  position: fixed; bottom: 32px; right: 32px;
  width: 42px; height: 42px;
  background: var(--navy); color: var(--white);
  border-radius: 2px; font-size: .76rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(27,43,75,.25);
  opacity: 0; transform: translateY(12px);
  transition: all .3s var(--ease); pointer-events: none; z-index: 900; cursor: none;
}
.stb.show { opacity:1; transform:none; pointer-events:all; }
.stb:hover { background: var(--gold); }

/* ============================
   BRAND ICONIC CARDS
   ============================ */
.brand-iconic-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 100%;
}

/* 5-card layout: first 3 in row 1, last 2 centered in row 2 */
@supports (display: grid) {
  .brand-iconic-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
  .brand-iconic-wrap .bi-card:nth-child(4),
  .brand-iconic-wrap .bi-card:nth-child(5) {
    /* handled below */
  }
}

.bi-card {
  background: var(--white);
  padding: 52px 44px 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.bi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease2);
}
.bi-card:hover::before { transform: scaleX(1); }
.bi-card:hover { background: var(--off); transform: translateY(-4px); }
.bi-card--purple { /* special variant handled by hover */ }
.bi-card--coral  { /* special variant */ }

.bi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.bi-num {
  font-family: var(--en);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
}
.bi-tag {
  font-family: var(--en);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--b-blue);
  background: rgba(27,79,168,.08);
  padding: 4px 10px;
  border-radius: 20px;
}
.bi-tag--purple { color: #6b3fa0; background: rgba(107,63,160,.08); }
.bi-tag--green  { color: var(--b-green); background: rgba(26,122,80,.08); }
.bi-tag--red    { color: var(--b-red); background: rgba(155,38,38,.08); }
.bi-tag--coral  { color: var(--b-coral); background: rgba(184,64,48,.08); }

.bi-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 1.5rem;
}
.bi-icon--blue   { background: rgba(27,79,168,.1);  color: var(--b-blue); }
.bi-icon--purple { background: rgba(107,63,160,.1); color: #6b3fa0; }
.bi-icon--green  { background: rgba(26,122,80,.1);  color: var(--b-green); }
.bi-icon--red    { background: rgba(155,38,38,.1);  color: var(--b-red); }
.bi-icon--coral  { background: rgba(184,64,48,.1);  color: var(--b-coral); }

.bi-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.3;
}
.bi-name em {
  display: block;
  font-family: var(--en);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--muted);
  font-style: normal;
  margin-top: 5px;
}

.bi-desc {
  font-size: .88rem;
  color: var(--ink2);
  line-height: 1.85;
  margin-bottom: 24px;
}
.bi-desc strong { color: var(--ink); font-weight: 600; }

.bi-list {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bi-list li {
  font-size: .82rem;
  color: var(--ink2);
  padding-left: 16px;
  position: relative;
  line-height: 1.6;
}
.bi-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.bi-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.bi-metrics > div {
  text-align: center;
}
.bi-metrics strong {
  display: block;
  font-family: var(--en);
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 3px;
}
.bi-metrics span {
  font-size: .66rem;
  color: var(--muted);
  letter-spacing: .04em;
}

.bi-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--b-blue);
  transition: gap .2s, opacity .2s;
  margin-top: auto;
}
.bi-link:hover { gap: 14px; opacity: .8; }
.bi-link--purple { color: #6b3fa0; }
.bi-link--green  { color: var(--b-green); }
.bi-link--red    { color: var(--b-red); }
.bi-link--coral  { color: var(--b-coral); }

.bi-link-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* 5-card responsive: last 2 stretch across 1.5 cols each */
@media (min-width: 1025px) {
  .brand-iconic-wrap {
    grid-template-columns: repeat(6, 1fr);
  }
  .bi-card { grid-column: span 2; }
  .bi-card:nth-child(4) { grid-column: span 3; }
  .bi-card:nth-child(5) { grid-column: span 3; }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width:1200px){
  .brand-row-body { padding: 56px 52px; }
  .history-left  { padding: 0 52px 0 48px; }
  .history-right { padding: 0 48px 0 52px; }
}
@media (max-width:1024px){
  .header, .header.scrolled { padding-left: 32px; padding-right: 32px; }
  .hero-body { padding: 0 32px 160px; }
  .hero-scroll-hint { right: 32px; }
  .statement { padding: 80px 32px; }
  .statement-wrap { grid-template-columns: 1fr; gap: 48px; }
  .brands-head { padding: 80px 32px 48px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .brands-head-right { text-align: left; }
  .brand-iconic-wrap { grid-template-columns: repeat(2, 1fr) !important; }
  .bi-card { grid-column: span 1 !important; padding: 40px 32px; }
  .brand-row { grid-template-columns: 1fr; min-height: auto; }
  .brand-row--rev { direction: ltr; }
  .brand-row-img { height: 300px; }
  .brand-row-body { padding: 48px 32px; }
  .process-inner { padding: 80px 32px; }
  .why-item { gap: 24px; }
  .why-title { flex: 0 0 160px; font-size: 1rem; }
  .history-inner { padding: 80px 32px; }
  .history-title-row { flex-direction: column; align-items: flex-start; margin-bottom: 48px; }
  .hl-item { grid-template-columns: 72px 32px 1fr; }
  .hl-year { font-size: 1.5rem; }
  .vision { padding: 100px 32px; }
  .contact-wrap { padding: 0 32px; grid-template-columns: 1fr; gap: 56px; }
  .footer-top { grid-template-columns: 1fr; gap: 44px; padding: 56px 32px 44px; }
  .footer-bottom { padding: 22px 32px; }
  .gnb { display: none; }
  .burger { display: flex; }
  .brand-banner { padding: 48px 32px 56px; }
  .bb-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width:768px){
  .hero-headline { font-size: 3rem; }
  .hero-body { padding: 0 22px 160px; }
  .hero-kpi { flex-wrap: wrap; }
  .kpi-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,.07); }
  .statement { padding: 64px 22px; }
  .brands-head { padding: 64px 22px 40px; }
  .brand-iconic-wrap { grid-template-columns: 1fr !important; gap: 1px; }
  .bi-card { grid-column: span 1 !important; padding: 36px 24px; }
  .bi-metrics { grid-template-columns: repeat(3,1fr); }
  .brand-row-body { padding: 40px 22px; }
  .process-inner { padding: 64px 22px; }
  .why-item { flex-wrap: wrap; gap: 16px; padding: 28px 0; }
  .why-num { display: none; }
  .why-title { flex: 1 1 100%; font-size: .95rem; }
  .why-desc { flex: 1 1 100%; }
  .why-arrow { display: none; }
  .history-inner { padding: 64px 22px; }
  .hl-item { grid-template-columns: 60px 28px 1fr; gap: 0; }
  .hl-year { font-size: 1.2rem; }
  .hl-content { padding-left: 20px; }
  .vision { padding: 80px 22px; }
  .contact-wrap { padding: 0 22px; }
  .cform { padding: 36px 22px; }
  .cform-row { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { padding-left: 22px; padding-right: 22px; }
  .footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .vision-statements { flex-direction: column; align-items: center; }
  .brand-banner { padding: 40px 22px 48px; }
  .bb-grid { grid-template-columns: repeat(2, 1fr); }
  .bb-wm-main { font-size: .82rem; white-space: normal; }
}
@media (max-width:480px){
  .hero-headline { font-size: 2.5rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
}
