@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Noto+Sans+KR:wght@300;400;500;700;900&family=Noto+Serif+KR:wght@400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CUSTOM VARIABLES & DESIGN SYSTEM --- */
body.dae-mode, .dae-root {
  --bg-primary: #FAF9F6;      /* Warm alabaster cream */
  --bg-secondary: #F3F1EC;    /* Slightly deeper cream */
  --bg-dark: #12110F;         /* Espresso black */
  --bg-dark-card: #1C1A17;    /* Charcoal card */
  --text-primary: #1C1A17;    /* Ink black */
  --text-muted: #6E685E;      /* Muted warm gray */
  --text-light: #ECEAE4;      /* Creamy off-white text */
  --text-light-muted: #A39E94;/* Muted text on dark */
  --accent: #C5A880;          /* Brushed craft gold/bronze */
  --accent-hover: #B0946E;
  
  --font-sans: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', sans-serif;
  --font-serif: 'Cormorant Garamond', serif;
  
  --transition-smooth: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  
  --border-light: #E6E2DA;    /* Thin layout lines */
  --border-dark: #2C2924;     /* Muted line on dark */
}

/* --- BASE STYLES --- */
.dae-root, .dae-root *, .dae-root *::before, .dae-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.dae-root {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dae-mode {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: clip; /* hidden 은 스크롤 컨테이너를 만들어 position:sticky 를 깨뜨림 → clip 으로 가로 넘침만 차단 */
}

@media (max-width: 992px) {
  html,
  body,
  body.dae-mode,
  .dae-root {
    max-width: 100%;
    overflow-x: hidden;
  }
}

.dae-root a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.dae-root button, .dae-root input, .dae-root textarea, .dae-root select {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

.dae-root img {
  max-width: 100%;
  height: auto;
  display: block;
}

.dae-root ul, .dae-root ol {
  list-style: none;
}

/* --- FLUID CONTAINER & PADDINGS --- */
.dae-root .container-full {
  width: 100%;
  padding: 0 clamp(24px, 7vw, 100px);
}

.dae-root .section-padding {
  padding: clamp(90px, 11vw, 160px) 0;
}

.dae-root .text-accent {
  color: var(--accent);
}

/* --- TRANSPARENT HEADER NAVIGATION --- */
.dae-root .dae-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 100;
  transition: var(--transition-smooth);
  color: #fff;
}

.dae-root .dae-header.scrolled {
  height: 80px;
  background-color: rgba(250, 249, 246, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  color: var(--text-primary);
}

.dae-root .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0 30px;
  position: relative;
}

.dae-root .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: inherit;
}

.dae-root .logo-link img {
  height: 34px;
  width: auto;
  transition: var(--transition-fast);
  filter: brightness(0) invert(1);
}

/* Logo turns back to original when scrolled */
.dae-root .dae-header.scrolled .logo-link img {
  filter: none;
}

.dae-root .logo-dot {
  color: var(--accent);
  margin: 0 2px;
}

.dae-root .dae-header nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.dae-root .dae-header nav ul {
  display: flex;
  gap: 50px;
}

.dae-root .dae-header nav a {
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 10px 0;
  color: inherit;
  letter-spacing: 0.02em;
}

.dae-root .dae-header nav a:hover {
  color: var(--accent);
}

.dae-root .header-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Switcher */
.dae-root .lang-switcher {
  position: relative;
  display: inline-flex;
}

.dae-root .lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto;
  height: 42px;
  padding: 0 4px;
  border-radius: 99px;
  border: none;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: var(--transition-fast);
}

/* "GLOBAL" 텍스트 라벨 */
.dae-root .lang-global-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: inherit;
  transition: var(--transition-fast);
}

.dae-root .lang-toggle-btn:hover {
  color: #fff;
  opacity: 0.85;
}

.dae-root .dae-header.scrolled .lang-toggle-btn {
  color: var(--text-muted);
}

.dae-root .dae-header.scrolled .lang-toggle-btn:hover {
  color: var(--text-primary);
}

.dae-root .lang-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: -30px;
  background-color: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 8px 6px;
  min-width: 90px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: var(--transition-fast);
  z-index: 110;
}

.dae-root .lang-switcher.active .lang-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dae-root .dae-header.scrolled .lang-dropdown {
  background-color: #fff;
  border-color: var(--border-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dae-root .lang-option {
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-align: center;
  transition: var(--transition-fast);
  color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.dae-root .lang-option:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}

.dae-root .lang-option.active {
  background-color: var(--accent);
  color: #fff;
}

.dae-root .dae-header.scrolled .lang-option {
  color: var(--text-muted);
}

.dae-root .dae-header.scrolled .lang-option:hover {
  color: var(--text-primary);
  background-color: rgba(0, 0, 0, 0.04);
}

.dae-root .dae-header.scrolled .lang-option.active {
  background-color: var(--text-primary);
  color: #fff;
}

.dae-root .btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: transparent;
  color: inherit;
  height: 42px; /* Uniform height matching the switcher */
  padding: 0 28px;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: var(--transition-fast);
}

.dae-root .btn-contact:hover {
  background-color: #fff;
  color: var(--text-primary);
  border-color: #fff;
}

.dae-root .dae-header.scrolled .btn-contact:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

/* 서브페이지(about, manufacturing 등) 헤더 — 밝은 배경 위에서 보이도록 항상 블랙(다크).
   하위 요소 대부분이 color:inherit / currentColor 라 header color 만 바꾸면 로고텍스트·네비·
   문의버튼(테두리 포함)·햄버거가 모두 따라옴. 흰색 반전 로고와 언어버튼만 별도 보정. */
.dae-root.dae-sub .dae-header {
  color: var(--text-primary);
  background-color: #fff;
  box-shadow: 0 1px 0 var(--border-light);
}
.dae-root.dae-sub .dae-header .logo-link img {
  filter: none;
}
.dae-root.dae-sub .dae-header .lang-toggle-btn {
  color: var(--text-muted);
}
.dae-root.dae-sub .dae-header .lang-toggle-btn:hover {
  color: var(--text-primary);
}

.dae-root .mobile-menu-btn {
  display: none;
  font-size: 1.6rem;
  color: inherit;
  cursor: pointer;
}

/* Mobile Nav Overlay */
.dae-root .mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--bg-dark);
  color: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(14px, 3vh, 24px);
  box-sizing: border-box;
  padding: calc(env(safe-area-inset-top, 0px) + 118px) 24px calc(env(safe-area-inset-bottom, 0px) + 28px);
  overflow-y: auto;
  overscroll-behavior: contain;
  pointer-events: none;
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s,
    visibility 0s linear 0.6s;
  will-change: transform;
}

.dae-root .mobile-nav.active {
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
  transition-delay: 0s;
}

.dae-root .mobile-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 2.2vh, 18px);
}

.dae-root .mobile-nav a {
  font-size: clamp(1.16rem, 5.2vw, 1.52rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
}

.dae-root .mobile-nav .btn-contact {
  height: 38px;
  padding: 0 22px;
  font-size: 0.82rem;
}

/* --- FULL SCREEN HERO BANNER --- */
.dae-root .hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* Ken Burns background slide show */
.dae-root .hero-slides {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dae-root .hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.8s ease-in-out;
  /* run the zoom on every slide continuously so it never snaps on fade-out */
  animation: kenBurns 12s infinite alternate ease-in-out;
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.dae-root .hero-slide.active {
  opacity: 1;
  z-index: 2;
}

@keyframes kenBurns {
  from { transform: scale(1.04); }
  to { transform: scale(1.18); }
}

.dae-root .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
  z-index: 3;
}

/* Text alignment & layout */
.dae-root .hero-content {
  position: absolute;
  top: 50%;
  left: 100px; /* Shifted 100px from left */
  transform: translateY(-50%);
  z-index: 4;
  max-width: 900px;
}

.dae-root .hero-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffeab0;
  margin-bottom: 24px;
}

.dae-root .hero-title {
  font-size: clamp(1.3rem, 2.8vw, 2.4rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 25px;
  text-shadow: 0 3px 15px rgba(0,0,0,0.15);
}

.dae-root .hero-title span.accent {
  color: var(--accent);
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
}

.dae-root .hero-desc {
  font-size: clamp(0.78rem, 1vw, 0.95rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 35px;
  max-width: 600px;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.dae-root .hero-actions {
  display: flex;
  gap: 20px;
}

.dae-root .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: #fff;
  padding: 18px 40px;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.25);
  transition: var(--transition-fast);
}

.dae-root .btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.4);
}

.dae-root .btn-secondary {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #fff;
  padding: 18px 40px;
  border-radius: 99px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition-fast);
}

.dae-root .btn-secondary:hover {
  border-color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Scroll indicator */
.dae-root .hero-scroll-indicator {
  position: absolute;
  bottom: 0;
  left: 100px; /* Shifted 100px from left */
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.dae-root .hero-scroll-text {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  font-weight: 600;
  writing-mode: vertical-lr; /* Vertical text */
  margin-bottom: 20px;
  line-height: 1;
}

.dae-root .hero-scroll-line {
  width: 1px;
  height: 120px; /* Line extended to 120px and connected to bottom */
  background: rgba(255, 255, 255, 0.4);
  position: relative;
}

/* --- HERITAGE SECTION (STORYTELLING) --- */
.dae-root .heritage {
  position: relative;
  background-image: url('../img/dae/img3.webp?v=3');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  border-top: none;
  border-bottom: none;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.dae-root .heritage .container-full {
  position: relative;
  z-index: 1;
}

.dae-root .heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

/* sensitive signature copy, bottom-right of the heritage section */
.dae-root .heritage-signature {
  position: absolute;
  right: clamp(24px, 7vw, 100px);
  bottom: clamp(28px, 5vw, 56px);
  z-index: 1;
  text-align: right;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.dae-root .heritage-signature-en {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffe1b8;
  margin-bottom: 12px;
}

.dae-root .heritage-quote {
  font-family: 'Batang', 'BatangChe', 'Noto Serif KR', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.3;
  color: #fff;
  font-style: normal;
  font-weight: 500;
  position: relative;
  /* shrink-wrap to the text so the underline ends exactly at "생산" */
  width: fit-content;
}

.dae-root .heritage-line {
  display: block;
  /* break out of the container padding so the line reaches the viewport's left edge */
  width: calc(100% + clamp(24px, 7vw, 100px));
  margin-left: calc(-1 * clamp(24px, 7vw, 100px));
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-top: 0;
}

.dae-root .heritage-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 60px);
}

.dae-root .heritage-content p {
  position: relative;
  padding-left: clamp(20px, 2vw, 32px);
  font-size: clamp(1.02rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.94);
  line-height: 1.85;
  margin-bottom: 0;
}

.dae-root #heritage .heritage-content p,
.dae-root #heritage .heritage-content p span {
  color: rgba(255, 255, 255, 0.94);
}

/* faint vertical line matching each block's text height
   (top pushed down by the first line's half-leading so it starts at the glyphs) */
.dae-root .heritage-content p::before {
  content: '';
  position: absolute;
  top: 0.42em;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
}

/* bright 16px segment on top of the line, aligned to the text start */
.dae-root .heritage-content p::after {
  content: '';
  position: absolute;
  top: 0.42em;
  left: 0;
  width: 1px;
  height: 16px;
  background-color: #fff;
}

.dae-root .heritage-content p .strong {
  color: #fff;
  font-weight: 700;
}

.dae-root #heritage .heritage-content p .strong {
  color: #ffe8a6;
}

.dae-root .heritage-content p:last-child {
  margin-bottom: 0;
}

/* --- STATEMENT BAND (under hero) --- */
.dae-root .statement {
  background-color: #fff;
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  background-position: center center;
  color: var(--text-primary);
  padding: clamp(40px, 6vw, 80px) 0;
  text-align: center;
}

.dae-root .statement-eyebrow {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 1vw, 0.85rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1.7;
  color: #a9a9a9;
  margin: 0;
}

.dae-root .statement-line {
  display: block;
  width: 1px;
  height: 16px;
  background-color: var(--text-primary);
  margin: clamp(20px, 2.5vw, 34px) auto;
}

.dae-root .statement-text {
  font-family: var(--font-sans);
  font-size: clamp(1.6rem, 3.6vw, 3rem);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  max-width: 24ch;
  margin: 0 auto;
}

/* top-left headline on the stats photo (absolute, doesn't move anything else) */
.dae-root .stats-eyebrow {
  position: absolute;
  top: clamp(30px, 5vw, 60px);
  /* left aligned with the partner statement below */
  left: calc(clamp(24px, 7vw, 100px) + (100% - 2 * clamp(24px, 7vw, 100px)) / 8 - 65px);
  z-index: 1;
  font-family: var(--font-sans);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #fff;
}

.dae-root .stats-eyebrow-en {
  display: inline;
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 0.85vw, 0.8rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

/* --- MANUFACTURING PARTNER STATEMENT (pinned to the bottom of the stats photo
   so the stats grid stays exactly centred) --- */
.dae-root .partner-inner {
  position: absolute;
  /* left edge aligned under the first stat column (≈ where "35YR" sits) */
  left: calc(clamp(24px, 7vw, 100px) + (100% - 2 * clamp(24px, 7vw, 100px)) / 8 - 65px);
  bottom: clamp(30px, 5vw, 60px);
  z-index: 1;
  text-align: left;
}

.dae-root .partner-inner p {
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: clamp(12px, 1.5vw, 18px);
  white-space: nowrap;
}

.dae-root .partner-reply {
  margin-left: 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.01em;
}

.dae-root .partner-reply .strong {
  color: #fff;
  font-weight: 700;
}

/* --- STATS SECTION --- */
.dae-root .stats {
  position: relative;
  background-image: url('../img/dae/embroidery-line.jpg');
  background-size: cover;
  background-position: center;
  color: #fff;
  border-bottom: none;
  padding: clamp(60px, 8vw, 100px) 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.dae-root .stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.dae-root .stats > .container-full {
  position: relative;
  z-index: 1;
}

/* One-row layout: label / value / desc aligned in shared rows via subgrid,
   so the connector can sit exactly on the value row ( 35YR --- @ --- 100% ) */
.dae-root .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  row-gap: 18px;
  padding: clamp(24px, 3vw, 44px) 0;
}

.dae-root .stat-item {
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  align-items: center;
  justify-items: center;
  text-align: center;
  padding: 0;
  transition: var(--transition-fast);
}

/* legacy elements no longer used in this layout */
.dae-root .stat-index, .dae-root .stat-divider {
  display: none;
}

.dae-root .stat-label {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #ffdf97;
}

/* value row: number stays centred, lines auto-stretch to fill each side,
   so they always meet the boundary dot no matter how wide the number is */
.dae-root .stat-value {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 28px);
  width: 100%;
}

.dae-root .stat-num {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 300;
  color: #fff;
  line-height: 0.95;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

/* the two stretching connector segments (left + right of the number) */
.dae-root .stat-value::before, .dae-root .stat-value::after {
  content: '';
  flex: 1 1 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  /* hidden until the text is in, then all lines fade in together */
  opacity: 0;
  transition: opacity 0.6s ease;
}

.dae-root .stat-item.visible .stat-value::before, .dae-root .stat-item.visible .stat-value::after {
  opacity: 1;
  transition-delay: 0.7s;
}

/* keep the number centred at the row ends, but don't draw a line off the edge */
.dae-root .stat-item:first-child .stat-value::before, .dae-root .stat-item:last-child .stat-value::after {
  background-color: transparent;
}

/* connector dot removed — lines now meet to form a continuous line */
.dae-root .stat-dot {
  display: none;
}

.dae-root .stat-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  font-weight: 300;
  max-width: 30ch;
}

/* --- SECTION GENERAL HEADER --- */
.dae-root .section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(60px, 8vw, 100px);
  gap: 40px;
}

/* stacked header: title on its own line, description below it */
.dae-root .section-head--stack {
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2vw, 28px);
}

.dae-root .section-head--stack .section-subtitle::before {
  display: none;
}

.dae-root .section-head--stack .section-title-wrap {
  max-width: none;
}

.dae-root .section-head--stack .section-title {
  white-space: nowrap;
  font-weight: 600;
}

.dae-root .section-head--stack .section-head-desc {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
}

.dae-root .section-title-wrap {
  max-width: 700px;
}

.dae-root .section-subtitle {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dae-root .section-subtitle::before {
  content: '';
  width: 20px;
  height: 1px;
  background-color: var(--accent);
}

.dae-root .section-title {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.dae-root .section-head-desc {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.75;
}

/* --- PROCESS FULL BANNER --- */
.dae-root .process-banner {
  position: relative;
  width: 100%;
  padding: 250px 0;
  color: #fff;
  overflow: hidden;
}

.dae-root .process-banner-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

.dae-root .process-banner-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}

.dae-root .process-banner .z-10 {
  position: relative;
  z-index: 10;
}

.dae-root .process-banner-subtitle {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fffca6;
  margin-bottom: 20px;
}

.dae-root .process-banner-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 24px;
}

.dae-root .process-banner-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 60px;
}

.dae-root .process-steps-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 40px;
}

.dae-root .p-banner-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 200px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dae-root .p-banner-icon {
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dae-root .p-banner-icon .icm {
  width: 48px;
  height: 48px;
}

.dae-root .p-step-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dae-root .p-step-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.dae-root .p-step-text {
  font-size: 1.1rem;
  font-weight: 500;
}

.dae-root .process-banner-action {
  margin-top: 50px;
}

.dae-root .p-banner-more {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.3s;
}

.dae-root .p-banner-more:hover {
  opacity: 0.7;
}

/* shaft: horizontal connecting line after "more" */
.dae-root .p-banner-more::before {
  content: '';
  order: 1;
  margin-left: 12px;
  width: 30px;
  height: 1px;
  background-color: #fff;
}

/* top half of the ">" arrow head only (no bottom stroke) */
.dae-root .p-banner-more::after {
  content: '';
  order: 2;
  width: 8px;
  height: 8px;
  margin-left: -11px;
  margin-top: 5px;
  border-top: 1px solid #fff;
  transform: rotate(45deg);
  transform-origin: right center;
}

/* --- PRODUCTS GRID --- */
.dae-root .products {
  background-color: #fff;
}

.dae-root .products-grid {
  --products-gap: clamp(18px, 2vw, 30px);
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--products-gap);
}

.dae-root .product-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  transition: var(--transition-fast);
}
.dae-root .product-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.dae-root .product-card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* 4th card spans the whole row: full-width image on top, text below */
.dae-root .product-card--wide {
  grid-column: 1 / -1;
  flex-direction: column;
}

.dae-root .product-card--wide .product-image {
  width: 100%;
  aspect-ratio: 16 / 6;
  margin-bottom: 0;
}

/* title + desc overlaid on the product image */
.dae-root .product-caption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: clamp(18px, 2vw, 26px);
  z-index: 1;
}

.dae-root .product-caption .product-title {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 6px;
}

.dae-root .product-caption .product-desc {
  color: #969696;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dae-root .product-card--wide .product-info {
  display: flex;
  flex-direction: column;
}

.dae-root .product-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #fafafa;
  position: relative;
  border: 1px solid #eeeeea;
  border-radius: 4px;
  margin-bottom: 28px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.02);
}

.dae-root .product-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  padding: 8%;
  mix-blend-mode: multiply;
}

@media (min-width: 1201px) {
  .dae-root .product-card:nth-child(4) .product-image,
  .dae-root .product-card:nth-child(5) .product-image {
    overflow: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .dae-root .product-card:nth-child(4) .product-image::before,
  .dae-root .product-card:nth-child(5) .product-image::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 0;
    background: #fafafa;
    border: 1px solid #eeeeea;
    border-radius: 4px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.02);
  }
  .dae-root .product-card:nth-child(4) .product-image::before {
    left: calc(-50% - (var(--products-gap) / 2));
    right: 0;
  }
  .dae-root .product-card:nth-child(5) .product-image::before {
    left: 0;
    right: calc(-50% - (var(--products-gap) / 2));
  }
  .dae-root .product-card:nth-child(4) .product-image img {
    transform: translateX(calc(-25% - (var(--products-gap) / 4)));
  }
  .dae-root .product-card:nth-child(5) .product-image img {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 1050 / 941;
    padding: 0;
    transform: translate(calc(25% + (var(--products-gap) / 4)), -50%);
  }
  .dae-root .product-card:nth-child(4) .product-caption,
  .dae-root .product-card:nth-child(4) .product-image .product-foot {
    left: calc(-50% - (var(--products-gap) / 2));
    width: calc(150% + (var(--products-gap) / 2));
  }
  .dae-root .product-card:nth-child(5) .product-image .product-foot {
    width: calc(150% + (var(--products-gap) / 2));
  }
}

.dae-root .product-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 35px;
  background: linear-gradient(180deg, rgba(18, 17, 15, 0) 0%, rgba(18, 17, 15, 0.75) 100%);
  opacity: 0;
  transform: translateY(15px);
  transition: var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dae-root .product-card:hover .product-overlay {
  opacity: 1;
  transform: translateY(0);
}

.dae-root .product-overlay-tag {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.dae-root .product-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
}

.dae-root .product-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.dae-root .product-title {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.dae-root .product-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* keywords + "자세히" on one line */
.dae-root .product-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}

/* foot pinned to the bottom of the image (caption sits at the top) */
.dae-root .product-image .product-foot {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin-top: 0;
  padding: clamp(18px, 2vw, 26px);
  z-index: 1;
}

.dae-root .product-keywords {
  min-width: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.45;
  color: var(--accent);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.dae-root .product-more {
  margin-left: auto;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  white-space: nowrap;
}

/* shaft: horizontal connecting line after "more" */
.dae-root .product-more::before {
  content: '';
  order: 1;
  margin-left: 12px;
  width: 30px;
  height: 1px;
  background-color: #969696;
}

/* top half of the ">" arrow head only (no bottom stroke) */
.dae-root .product-more::after {
  content: '';
  order: 2;
  width: 8px;
  height: 8px;
  margin-left: -11px;
  margin-top: 5px;
  border-top: 1px solid #969696;
  transform: rotate(45deg);
  transform-origin: right center;
}

/* --- MANUFACTURING PROCESS --- */
.dae-root .process {
  background-color: var(--bg-secondary);
}

.dae-root .process-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(40px, 8vw, 100px);
}

.dae-root .process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dae-root .process-step {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  border-radius: 4px;
  padding: 34px 45px;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.dae-root .process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: var(--accent);
  transition: var(--transition-smooth);
}

.dae-root .process-step.active::before {
  width: 5px;
}

.dae-root .process-step.active {
  background-color: #fff;
  border-color: transparent;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
  transform: translateX(12px);
}

.dae-root .process-step-info {
  display: flex;
  align-items: center;
  gap: 35px;
}

.dae-root .process-step-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  transition: var(--transition-fast);
}

.dae-root .process-step.active .process-step-num {
  opacity: 1;
}

.dae-root .process-step-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dae-root .process-step-arrow {
  color: var(--text-muted);
  transition: var(--transition-fast);
  font-size: 1.2rem;
}

.dae-root .process-step.active .process-step-arrow {
  transform: translateX(8px);
  color: var(--accent);
}

.dae-root .process-visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 520px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
}

.dae-root .process-visual-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1s var(--ease-out-expo), transform 1.5s var(--ease-out-expo);
  z-index: 1;
}

.dae-root .process-visual-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.dae-root .process-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 17, 15, 0.15) 0%, rgba(18, 17, 15, 0.8) 100%);
  z-index: 3;
}

.dae-root .process-visual-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 45px;
  z-index: 4;
  color: #fff;
}

.dae-root .process-visual-tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.dae-root .process-visual-title {
  font-size: 1.9rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.dae-root .process-visual-desc {
  color: var(--text-light-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* --- CLIENT BRANDS SCROLLING MARQUEE --- */
.dae-root .brands {
  position: relative;
  background-image: url('../img/dae/model-47.webp?v=3');
  background-size: cover;
  background-position: center;
  border-bottom: none;
  overflow: hidden;
  padding: clamp(60px, 8vw, 100px) 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dae-root .brands > .container-full, .dae-root .brands > .marquee-container {
  position: relative;
  z-index: 1;
}

/* light text over the photo */
.dae-root .brands .section-title {
  color: #fff;
}

.dae-root .brands .section-head-desc {
  color: rgba(255, 255, 255, 0.75);
}

.dae-root .brands .brand-logo-english {
  color: rgba(255, 255, 255, 0.85);
}

.dae-root .brands .brand-logo-korean {
  color: rgba(255, 255, 255, 0.6);
}

.dae-root .brands .brand-logo-card:hover .brand-logo-english {
  color: #fff;
}

.dae-root .marquee-container {
  display: flex;
  overflow: hidden;
  position: relative;
  user-select: none;
  padding: 20px 0;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.dae-root .marquee-content {
  display: flex;
  gap: 100px;
  animation: marquee 28s linear infinite;
  flex-shrink: 0;
}

.dae-root .brand-logo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 240px;
  flex-shrink: 0;
  text-align: center;
  transition: var(--transition-fast);
}

.dae-root .brand-logo-english {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  color: #c8c5be;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.dae-root .brand-logo-korean {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
  opacity: 1;
  transform: none;
  transition: var(--transition-fast);
}

.dae-root .brand-logo-card:hover .brand-logo-english {
  color: var(--text-primary);
  transform: scale(1.06);
}

.dae-root .brand-logo-card:hover .brand-logo-korean {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% - 100px)); }
}

/* --- PREMIUM ESTIMATE / CONTACT SECTION --- */
.dae-root .contact {
  background-color: #fff;
  color: #111;
  position: relative;
  overflow: hidden;
}

.dae-root .contact-bg-text {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28vw;
  color: rgba(0, 0, 0, 0.02);
  bottom: -8%;
  left: -8%;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.dae-root .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 100px);
  position: relative;
  z-index: 2;
}

.dae-root .contact-info-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dae-root .contact-info-wrap .section-subtitle {
  color: #111;
}

.dae-root .contact-info-wrap .section-subtitle::before {
  display: none;
}

.dae-root .contact-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  color: #111;
}

.dae-root .contact-title span.accent {
  color: #111;
  font-weight: 600;
}

.dae-root .contact-desc {
  font-size: 1.08rem;
  color: #333;
  line-height: 1.8;
  max-width: 100%;
  margin-bottom: 50px;
  word-break: keep-all;
}

.dae-root .contact-info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.dae-root .info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.dae-root .info-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.08);
  border: 1px solid rgba(197, 168, 128, 0.18);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.dae-root .info-item-content h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 6px;
}

.dae-root .info-item-content p {
  font-size: 1.02rem;
  color: #111;
  line-height: 1.5;
}

.dae-root .info-item-content .phone-number {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  color: var(--accent);
}

/* Luxury Line-Based Form */
.dae-root .contact-form-card {
  background-color: transparent;
  border: none;
  border-radius: 4px;
  padding: 0;
  color: #111;
  box-shadow: none;
}

.dae-root .form-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  letter-spacing: -0.01em;
}

.dae-root .form-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
}

.dae-root .form-status-dot {
  width: 7px;
  height: 7px;
  background-color: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(197, 168, 128, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 168, 128, 0); }
}

.dae-root .form-group {
  margin-bottom: 35px;
  position: relative;
}

.dae-root .form-group.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.dae-root .form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Modern luxury minimal inputs - clean bottom line */
.dae-root .form-input {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: #111;
  padding: 12px 4px;
  font-size: 1rem;
  border-radius: 0;
  transition: var(--transition-fast);
}

.dae-root .form-input:focus {
  border-bottom-color: var(--accent);
}

.dae-root select.form-input {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C5A880' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  padding-right: 30px;
}

.dae-root select.form-input option {
  background-color: #fff;
  color: #111;
  padding: 10px;
}

.dae-root textarea.form-input {
  min-height: 100px;
  resize: vertical;
}

.dae-root .privacy-policy-box {
  max-height: 260px;
  margin: 4px 0 18px;
  padding: 18px 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-gutter: stable;
  border: 1px solid rgba(28, 26, 23, 0.12);
  background: #f7f7f5;
  color: var(--text-primary);
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  line-height: 1.72;
}
.dae-root .privacy-policy-box h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .privacy-policy-box h4 {
  margin: 18px 0 7px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .privacy-policy-box p {
  margin: 0 0 10px;
  color: var(--text-muted);
}
.dae-root .privacy-policy-box p:last-child { margin-bottom: 0; }

.dae-root .form-submit-btn {
  display: inline-flex;
  background-color: var(--accent);
  color: #fff;
  padding: 18px 40px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
  box-shadow: 0 10px 30px rgba(197, 168, 128, 0.2);
  margin-top: 15px;
}

.dae-root .form-submit-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(197, 168, 128, 0.35);
}
.dae-root .form-submit-btn:disabled,
.dae-root .form-submit-btn[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}
.dae-root .form-submit-btn:disabled:hover,
.dae-root .form-submit-btn[aria-disabled="true"]:hover {
  background-color: var(--accent);
  transform: none;
  box-shadow: none;
}

.dae-root .form-submit-btn .icm {
  transition: var(--transition-fast);
}

.dae-root .form-submit-btn:hover .icm {
  transform: translateX(5px);
}

.dae-root .form-message {
  display: none;
  margin-top: 25px;
  padding: 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  text-align: center;
  font-weight: 500;
  line-height: 1.6;
}

.dae-root .form-message.success {
  display: block;
  background-color: rgba(46, 117, 89, 0.12);
  border: 1px solid rgba(46, 117, 89, 0.25);
  color: #5bb38a;
}

.dae-root .form-message.error {
  display: block;
  background-color: rgba(181, 74, 74, 0.12);
  border: 1px solid rgba(181, 74, 74, 0.25);
  color: #d16d6d;
}

/* --- FOOTER --- */
.dae-root .footer-contact-panel {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  color: #111;
  padding: clamp(72px, 8vw, 130px) 0 clamp(64px, 7vw, 112px);
}

.dae-root .footer-contact-panel .contact-bg-text {
  bottom: -14%;
  left: -6%;
  font-size: 24vw;
  line-height: 0.9;
}

.dae-root .footer-contact-panel-inner {
  position: relative;
  z-index: 2;
}

.dae-root .footer-contact-panel .contact-info-list {
  margin-top: 0;
}

.dae-root .dae-footer {
  background-color: #fff;
  border-top: 1px solid #eee;
  color: #555;
  padding: 100px 0 45px;
  position: relative;
  overflow: hidden;
}

.dae-root .footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(5, 0.9fr);
  gap: 20px;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.dae-root .footer-nav-col {
  position: relative;
  padding-left: 20px;
}

.dae-root .footer-nav-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 45px;
  width: 1px;
  background-color: rgba(0,0,0,0.04);
}

.dae-root .footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.6vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0;
}

.dae-root .footer-brand-logo img {
  height: 42px;
  width: auto;
}

.dae-root .footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.75;
  max-width: 320px;
  margin-top: 15px;
  margin-bottom: 28px;
  margin-left: 10px;
  color: #333;
}

.dae-root .footer-socials {
  display: flex;
  gap: 16px;
}

.dae-root .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: grid;
  place-items: center;
  color: #555;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.dae-root .social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
}

.dae-root .footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 28px;
}

.dae-root .footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dae-root .footer-nav-links a, .dae-root .footer-nav-links span {
  font-size: 0.88rem;
  transition: var(--transition-fast);
  color: #555;
  line-height: 1.5;
}

.dae-root .footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dae-root .footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dae-root .footer-contact-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #777;
}

.dae-root .footer-contact-value {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #333;
  word-break: keep-all;
}

.dae-root .footer-contact-phone {
  font-family: var(--font-display);
  font-weight: 700;
  color: #111;
  letter-spacing: 0.03em;
}

.dae-root .footer-nav-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.dae-root .footer-bottom {
  border-top: 1px solid #eee;
  padding-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.dae-root .footer-copyright {
  color: #777;
}

.dae-root .footer-legal-links {
  display: flex;
  gap: 30px;
}

.dae-root .footer-legal-links a {
  color: #777;
}

.dae-root .footer-legal-links a:hover {
  color: var(--accent);
}

.dae-root .legal-page .manufacturing-title {
  margin-bottom: clamp(32px, 4vw, 56px);
}

.dae-root .legal-doc {
  max-width: 920px;
  color: var(--text-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.85;
}

.dae-root .legal-doc h3 {
  margin: 0 0 18px;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  color: var(--text-primary);
}

.dae-root .legal-doc h4 {
  margin: 34px 0 10px;
  font-size: 1.02rem;
  color: var(--text-primary);
}

.dae-root .legal-doc p {
  margin: 0 0 12px;
  color: var(--text-muted);
}

.dae-root .legal-doc ol {
  margin: 0 0 18px;
  padding-left: 1.35em;
  color: var(--text-muted);
}

.dae-root .legal-doc li {
  margin-bottom: 6px;
  line-height: 1.75;
}

/* --- ANIMATIONS / TRANSITIONS --- */
.dae-root .fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo);
}

.dae-root .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- RESPONSIVE BREAKPOINTS (100% Full-Width Responsive) --- */
@media (max-width: 1200px) {
  .dae-root .heritage-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dae-root .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }
  .dae-root .product-card,
  .dae-root .product-card:nth-child(4),
  .dae-root .product-card:nth-child(5) {
    grid-column: auto;
  }
  
  .dae-root .process-layout {
    gap: 40px;
  }
  
  .dae-root .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
  }
}

@media (max-width: 992px) {
  .dae-root {
    --header-height: 80px;
  }
  
  .dae-root .dae-header {
    height: var(--header-height);
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  
  .dae-root .dae-header.scrolled {
    height: 75px;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    color: var(--text-primary);
  }
  
  .dae-root .logo-link img {
    filter: brightness(0) invert(1);
  }
  .dae-root .dae-header.scrolled .logo-link img,
  .dae-root.dae-sub .dae-header .logo-link img {
    filter: none;
  }

  .dae-root .dae-header nav, .dae-root .header-cta .btn-contact {
    display: none;
  }
  
  .dae-root .mobile-menu-btn {
    display: block;
  }

  .dae-root .hero-content,
  .dae-root .hero-scroll-indicator {
    left: 30px;
  }
  
  /* stacked layout: drop subgrid, connector goes vertical between items */
  .dae-root .stats-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-rows: none;
    row-gap: 0;
    padding: 0;
  }

  .dae-root .stat-item {
    position: relative;
    grid-row: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: clamp(36px, 6vw, 52px) 20px;
  }

  /* disable the value-row connector when stacked */
  .dae-root .stat-value {
    display: block;
  }

  .dae-root .stat-value::after, .dae-root .stat-value::before, .dae-root .stat-dot {
    display: none;
  }

  /* vertical connector line + dot between stacked items */
  .dae-root .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 1px;
    height: clamp(44px, 9vw, 72px);
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
  }

  .dae-root .stat-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: var(--accent);
    z-index: 2;
  }

  .dae-root .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .dae-root .process-layout {
    grid-template-columns: 1fr;
  }
  
  .dae-root .process-visual {
    min-height: 420px;
    order: -1;
  }
  
  .dae-root .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .dae-root .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
  }

  .dae-root .section-head--stack .section-title, .dae-root .section-head--stack .section-head-desc {
    white-space: normal;
  }

  .dae-root .heritage-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dae-root .stat-item {
    padding: 30px 10px;
    gap: 12px;
  }

  .dae-root .stat-desc {
    max-width: 34ch;
  }

  .dae-root .products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dae-root .product-card--wide {
    flex-direction: column;
    align-items: stretch;
  }

  .dae-root .product-card--wide .product-image {
    aspect-ratio: 4 / 5;
    margin-bottom: 22px;
  }

  .dae-root .contact-form-card {
    padding: 35px 24px;
  }
  
  .dae-root .form-group.row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .dae-root .form-group.row .form-group {
    margin-bottom: 35px;
  }
  
  .dae-root .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .dae-root .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .dae-root .footer-legal-links {
    justify-content: center;
  }
}

/* ============================================================
   생산역량(Manufacturing) 페이지
   ============================================================ */
.dae-root .manufacturing-intro {
  padding-top: clamp(48px, 3.5vw, 72px);    /* section-padding 기본 top 축소 (헤더 아래 여백 과다 해소) */
  padding-bottom: clamp(32px, 4vw, 52px);   /* 기본 160px → 축소 */
}
.dae-root .manufacturing-process {
  padding-top: clamp(32px, 4vw, 52px);       /* Process 위 여백 축소 */
  padding-bottom: clamp(48px, 6vw, 90px);
}
.dae-root .manufacturing-process-sub {
  margin-top: 14px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.02em;
}
/* 공정 스크롤 — 스티키(사진 고정, 스크롤 시 크로스페이드 전환) */
/* 공정 스크롤 — 빈폴식 커버+패럴럭스: 다음 패널(이미지+텍스트)이 밑에서 올라와 이전 패널을 덮고,
   덮인 패널은 천천히 위로 드리프트해 깊이감을 준다. z-index/translateY 는 JS 가 스크롤에 연동. */
.dae-root .mfg-steps {
  position: relative;
  height: 500vh; /* 5단계 × 1화면. 단계 수 바뀌면 (단계수 × 100vh) 로 조정 */
}
.dae-root .mfg-steps-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.dae-root .mfg-panel {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;         /* 캡션 세로 중앙 */
  justify-content: flex-start; /* 왼쪽 */
  will-change: transform;
}
.dae-root .mfg-panel-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dae-root .mfg-panel-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0) 100%);
}
.dae-root .mfg-panel-cap {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: clamp(28px, 6vw, 90px);
  color: #fff;
  will-change: transform, opacity;
}
.dae-root .mfg-panel-cap .step-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.74rem, 0.9vw, 0.88rem);
  letter-spacing: 0.18em;
  color: #ffeab0;
  margin-bottom: 14px;
}
.dae-root .mfg-panel-cap .step-title {
  font-size: clamp(2.6rem, 4.4vw, 4.2rem);
  font-weight: 600;
  margin-bottom: 16px;
  white-space: nowrap; /* 한글+영문 한 줄 유지 (긴 제목이 캡션 폭 때문에 밑으로 떨어지는 것 방지) */
}
.dae-root .mfg-panel-cap .step-title-en {
  margin-left: 12px;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.68);
  white-space: nowrap;
}
/* 좁은 화면에선 영문을 아래 줄로 내려 한글 제목이 잘리지 않게 */
@media (max-width: 700px) {
  .dae-root .mfg-steps {
    height: auto;
    display: grid;
    gap: 14px;
    padding: 0 20px 56px;
  }

  .dae-root .mfg-steps-sticky {
    position: relative;
    top: auto;
    height: auto;
    overflow: visible;
    display: grid;
    gap: 14px;
  }

  .dae-root .mfg-panel {
    position: relative;
    inset: auto;
    min-height: min(72svh, 560px);
    border-radius: 8px;
    overflow: hidden;
    transform: none !important;
    will-change: auto;
  }

  .dae-root .mfg-panel-img,
  .dae-root .mfg-panel-scrim {
    border-radius: inherit;
  }

  .dae-root .mfg-panel-scrim {
    background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.14) 0%,
      rgba(0, 0, 0, 0.46) 46%,
      rgba(0, 0, 0, 0.78) 100%);
  }

  .dae-root .mfg-panel-cap {
    align-self: flex-end;
    width: 100%;
    max-width: none;
    padding: 28px 22px 26px;
    will-change: auto;
  }

  .dae-root .mfg-panel-cap .step-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    white-space: normal;
  }
  .dae-root .mfg-panel-cap .step-title-en {
    display: block;
    margin-left: 0;
    margin-top: 6px;
  }
}
.dae-root .mfg-panel-cap .step-desc {
  font-size: clamp(0.95rem, 1.15vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}
.dae-root .manufacturing-eyebrow {
  font-size: clamp(0.72rem, 0.9vw, 0.85rem);
  font-weight: 400;
  color: #b57d2f;
  margin-left: 5px; /* 5px 이동 */
}
.dae-root .manufacturing-eyebrow::before {
  display: none; /* 블릿 제거 */
}
.dae-root .manufacturing-title {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 600; /* .section-title 의 900 → 완화 */
}
.dae-root .manufacturing-title-en {
  margin-top: 18px;
  margin-left: 5px; /* 5px 이동 */
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dae-root .manufacturing-intro-img {
  position: relative;
  margin-top: clamp(40px, 5vw, 72px);
  height: clamp(420px, 62vh, 760px);
  overflow: hidden; /* 오버사이즈 배경 클리핑 */
}
.dae-root .manufacturing-intro-bg {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 140%; /* 위아래 여유분 → 패럴럭스 이동 시 빈틈 방지 */
  object-fit: cover;
  will-change: transform;
}
/* 사진 위 텍스트 오버레이 — 하단 스크림으로 가독성 확보 */
.dae-root .manufacturing-intro-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;        /* 세로 중앙 */
  justify-content: flex-start; /* 가로 왼쪽 */
  padding: clamp(24px, 6vw, 90px);
  background: linear-gradient(to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0) 100%);
}
.dae-root .manufacturing-intro-overlay p {
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.85;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
/* 첫 줄 강조 — 폰트 키움 */
.dae-root .manufacturing-intro-overlay .mfg-lead {
  display: inline-block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  color: #ffeab0;
}
/* 공정 단계 부분만 밑줄 */
.dae-root .manufacturing-intro-overlay .mfg-underline {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
/* 이미지 왼쪽 하단 메타 정보 */
.dae-root .manufacturing-intro-meta {
  position: absolute;
  left: clamp(24px, 6vw, 90px);
  bottom: clamp(22px, 3.5vw, 46px);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   협력사 네트워크 (Partner Network)
   ============================================================ */
/* 협력사 네트워크 — 흰 헤더 + on1 배경 밴드(박스·라인 없음, 8개 가로) */
.dae-root .partner-net {
  padding-top: clamp(60px, 8vw, 110px);
}
.dae-root .partner-net-head {
  max-width: none;
  margin-bottom: clamp(50px, 6vw, 84px); /* 헤더와 배경 밴드 분리 */
}
.dae-root .partner-net-head .manufacturing-title {
  white-space: nowrap; /* "모든 원·부자재, 대한민국에서." 한 줄 유지 */
}
@media (max-width: 700px) {
  .dae-root .partner-net-head .manufacturing-title { white-space: normal; }
}
.dae-root .partner-net-band {
  position: relative;
  overflow: hidden;
  padding: clamp(160px, 20vw, 300px) 0; /* 배경 위아래 크게 */
  color: #fff;
}
.dae-root .partner-net-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dae-root .partner-net-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(10, 13, 11, 0.3);
}
.dae-root .partner-net-inner {
  position: relative;
  z-index: 2;
}
.dae-root .partner-net-copy {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
}
.dae-root .partner-net-desc {
  max-width: 780px;
  margin-bottom: clamp(40px, 5vw, 60px);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}
.dae-root .partner-net-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr); /* 8개 균등, 한 줄 가로 */
}
.dae-root .partner-net-col {
  padding-left: clamp(16px, 1.4vw, 24px);
  border-left: 1px solid rgba(255, 255, 255, 0.3); /* 왼쪽 세로 라인 (화이트 0.3) */
}
.dae-root .partner-net-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ffeab0;
  margin-bottom: 16px;
}
.dae-root .partner-net-name {
  display: block;
  font-size: clamp(0.95rem, 1.15vw, 1.2rem);
  font-weight: 600;
  margin-bottom: 8px;
}
.dae-root .partner-net-type {
  display: block;
  font-size: clamp(0.74rem, 0.85vw, 0.86rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}
/* 태블릿: 한 줄 유지하되 가로 스크롤 */
@media (min-width: 701px) and (max-width: 900px) {
  .dae-root .partner-net-list {
    grid-auto-columns: minmax(140px, 1fr);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* 모바일: 가로 스크롤 대신 2열로 정리 */
@media (max-width: 700px) {
  .dae-root .partner-net-list {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-columns: auto;
    gap: 28px 0;
    overflow-x: visible;
  }

  .dae-root .partner-net-col {
    min-width: 0;
    padding-left: 14px;
  }
}

/* ============================================================
   품질 관리 · A/S (Quality & A/S) — 흰 배경, 상단 룰 4열
   ============================================================ */
.dae-root .qc-head {
  max-width: 860px;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.dae-root .qc-desc {
  margin-top: 24px;
  max-width: 720px;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.8;
  color: var(--text-muted);
}
.dae-root .qc-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  padding: 13px 28px;
  border: 1px solid var(--text-primary);
  border-radius: 99px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.dae-root .qc-btn:hover {
  background: var(--text-primary);
  color: #fff;
}
.dae-root .qc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.dae-root .qc-item {
  padding-top: 26px;
  border-top: 2px solid var(--text-primary); /* 에디토리얼 상단 룰 (박스 아님) */
}
.dae-root .qc-num {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #b57d2f;
}
.dae-root .qc-item-title {
  margin: 16px 0 12px;
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-primary);
}
.dae-root .qc-item-desc {
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.7;
  color: var(--text-muted);
}
.dae-root .qc-tag {
  display: inline-block;
  margin-top: 22px;
  padding: 5px 13px;
  border: 1px solid var(--border-light);
  border-radius: 99px;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.dae-root .qc-tag--warranty {
  border-color: #b57d2f;
  color: #b57d2f;
}
@media (max-width: 900px) {
  .dae-root .qc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .dae-root .qc-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   보조 규칙 (헬퍼 클래스)
   ============================================================ */

/* Lenis(관성 스크롤) 권장 호환 CSS */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* 서브페이지 main 상단 여백 (고정 헤더 높이) */
.dae-root .dae-main--sub { padding-top: 100px; }

/* fade-up transition-delay 헬퍼 */
.dae-root .fd-05 { transition-delay: 0.05s; }
.dae-root .fd-08 { transition-delay: 0.08s; }
.dae-root .fd-10 { transition-delay: 0.1s; }
.dae-root .fd-15 { transition-delay: 0.15s; }
.dae-root .fd-16 { transition-delay: 0.16s; }
.dae-root .fd-20 { transition-delay: 0.2s; }
.dae-root .fd-30 { transition-delay: 0.3s; }

/* 줄바꿈 스팬 (블록 표시) */
.dae-root .ln { display: block; }

/* 인라인 SVG 대체 — currentColor 를 따라가는 마스크 아이콘
   (레이아웃 JSON 은 svg path 자식 노드를 지원하지 않음) */
.dae-root .icm {
  display: inline-block;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: var(--icm) no-repeat center / contain;
  mask: var(--icm) no-repeat center / contain;
}
.dae-root .icm-globe { --icm: url('../img/dae/icons/globe.svg'); width: 22px; height: 22px; }
.dae-root .icm-arrow { --icm: url('../img/dae/icons/arrow-right.svg'); width: 18px; height: 18px; }
.dae-root .qc-btn .icm-arrow { width: 16px; height: 16px; }
.dae-root .icm-step1 { --icm: url('../img/dae/icons/step1.svg'); }
.dae-root .icm-step2 { --icm: url('../img/dae/icons/step2.svg'); }
.dae-root .icm-step3 { --icm: url('../img/dae/icons/step3.svg'); }
.dae-root .icm-step4 { --icm: url('../img/dae/icons/step4.svg'); }
.dae-root .icm-step5 { --icm: url('../img/dae/icons/step5.svg'); }

/* 히어로 슬라이드 / 프로세스 배너 배경 */
.dae-root .hero-slide--1 { background-image: url('../img/dae/hero1.webp?v=3'); }
.dae-root .hero-slide--2 { background-image: url('../img/dae/hero2.webp?v=3'); }
.dae-root .process-banner-bg { background-image: url('../img/dae/img1.webp?v=3'); }

/* 푸터 inline style 대체 */
.dae-root .footer-nav-title.fmb8 { margin-bottom: 8px; }
.dae-root .footer-nav-title.fmt20 { margin-top: 20px; }

/* 히어로 타이틀 강조색 */
.dae-root .hero-title .tint { color: #ffeab0; }
.dae-root .heritage-quote .tint { color: #ffeab0; }
.dae-root .heritage-content p .strong { color: #ffe8a6; }
.dae-root .brands .section-subtitle.tint-warm { color: #ffdcad; }

/* ============================================================
   회사소개 — 대표 인사말 (About CEO Greeting)
   ============================================================ */
.dae-root .about-ceo {
  padding-top: clamp(56px, 7vw, 110px);
  padding-bottom: clamp(64px, 8vw, 130px);
  background-color: #ffffff;
}
.dae-root .about-ceo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 5vw, 84px);
  align-items: stretch;
}
.dae-root .about-ceo-photo {
  position: relative;
  overflow: hidden;
  min-height: 440px;
}
.dae-root .about-ceo-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dae-root .about-ceo-title-en {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--text-primary);
}
.dae-root .about-ceo-quote {
  margin-top: clamp(26px, 3vw, 40px);
}
.dae-root .about-ceo-quote p {
  margin: 0 0 18px;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 1.9;
  color: #3d3a34;
}
.dae-root .about-ceo-quote p:first-child {
  font-weight: 500;
  color: var(--text-primary);
}
.dae-root .about-ceo-quote p:last-child { margin-bottom: 0; }
.dae-root .about-ceo-history {
  margin-top: clamp(28px, 3.2vw, 42px);
  padding-top: clamp(20px, 2.4vw, 30px);
  border-top: 1px solid var(--border-light);
  font-size: clamp(0.88rem, 1vw, 0.96rem);
  line-height: 1.85;
  color: var(--text-muted);
}
.dae-root .about-ceo-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(30px, 3.5vw, 46px);
}
.dae-root .about-ceo-foot .qc-btn { margin-top: 0; }
.dae-root .about-ceo-sign {
  text-align: right;
  line-height: 1.5;
}
.dae-root .about-ceo-sign-name {
  display: block;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .about-ceo-sign-sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.85vw, 0.8rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .dae-root .about-ceo-grid { grid-template-columns: 1fr; }
  .dae-root .about-ceo-photo { min-height: 320px; }
  .dae-root .about-ceo-foot { flex-direction: column; align-items: flex-start; }
  .dae-root .about-ceo-sign { text-align: left; }
}

/* ============================================================
   회사소개 — 기업 철학 (About Philosophy, ab3 배경 밴드)
   ※ 아이템 상단 가로줄 없음 — 번호/제목/설명만.
   ============================================================ */
.dae-root .about-phil {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 160px) 0;
}
.dae-root .about-phil-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dae-root .about-phil-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.dae-root .about-phil-inner {
  position: relative;
  z-index: 2;
}
.dae-root .about-phil-eyebrow {
  color: var(--text-primary);
}
.dae-root .about-phil-eyebrow::before {
  display: none;
}
.dae-root .about-phil-title {
  margin-top: 12px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}
.dae-root .about-phil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(48px, 6vw, 90px);
}
.dae-root .about-phil-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.85vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #ffdcad;
}
.dae-root .about-phil-item-title {
  margin-top: 0;
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 700;
  color: #fff;
}
.dae-root .about-phil-desc {
  margin-top: 12px;
  font-size: clamp(0.92rem, 1.05vw, 1.02rem);
  line-height: 1.85;
  color: #ffffff;
}
@media (max-width: 900px) {
  .dae-root .about-phil { padding: 70px 0; }
  .dae-root .about-phil-grid { grid-template-columns: 1fr; gap: 30px; margin-top: 44px; }
}

/* 기업 철학 — 아이콘은 제목 왼쪽 인라인 (과녁 / 공장 / 양방향 화살표) */
.dae-root .about-phil-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}
.dae-root .about-phil-title-row .icm {
  width: 30px;
  height: 30px;
  color: #ffdcad;
}
/* 영문 설명 — 국문 아래 보조 줄 */
.dae-root .about-phil-desc-en {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
}
.dae-root .icm-phil1 { --icm: url('../img/dae/icons/phil1.svg?v=2'); }
.dae-root .icm-phil2 { --icm: url('../img/dae/icons/phil2.svg'); }
.dae-root .icm-phil3 { --icm: url('../img/dae/icons/phil3.svg?v=2'); }

/* ============================================================
   회사소개 배너 — 전용 클래스 (manufacturing 인트로와 완전 분리).
   다른 페이지/섹션 CSS 를 바꿔도 이 배너는 영향받지 않음. 값 고정.
   ============================================================ */
.dae-root .about-intro-img {
  position: relative;
  margin-top: clamp(40px, 5vw, 72px);
  height: clamp(420px, 62vh, 760px);
  overflow: hidden;
}
.dae-root .about-intro-bg {
  position: absolute;
  left: 0;
  top: -20%;
  width: 100%;
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.dae-root .about-intro-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(24px, 6vw, 90px);
  background: linear-gradient(to right,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 45%,
    rgba(0, 0, 0, 0) 100%);
}
.dae-root .about-intro-overlay p {
  margin: 0;
  color: #fff;
  text-align: left;
  font-size: clamp(1rem, 1.35vw, 1.3rem);
  line-height: 1.85;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}
.dae-root .about-intro-overlay .mfg-lead {
  display: inline-block;
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 500;
  color: #ffeab0;
}
.dae-root .about-intro-overlay .mfg-underline {
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.dae-root .about-intro-meta {
  position: absolute;
  left: clamp(24px, 6vw, 90px);
  bottom: clamp(22px, 3.5vw, 46px);
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.9;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

/* ============================================================
   회사소개 — 회사 연혁 (About History, ab4 배경 + 중앙 세로선 좌우 타임라인)
   ============================================================ */
.dae-root .about-history {
  padding-top: clamp(56px, 7vw, 110px);
  background-color: #ffffff;
}
.dae-root .about-history-head {
  margin-bottom: clamp(50px, 6vw, 84px);
}
.dae-root .about-history-band {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 160px) 0;
  background-image: url('../img/dae/ab4.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* 뷰포트 고정 배경 — 긴 섹션에서 줌 왜곡 없음 */
}
.dae-root .about-history-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.dae-root .about-history-inner {
  position: relative;
  z-index: 2;
}
/* 타임라인 상단 센터 영문 카피 + 한국어 병기 */
.dae-root .about-history-copy {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 2.3rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: #fff;
}
.dae-root .about-history-copy-sub {
  text-align: center;
  margin-top: 16px;
  margin-bottom: clamp(48px, 6vw, 80px);
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.85vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
}
.dae-root .about-history-sub {
  margin-top: 18px;
  max-width: 46em;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-muted);
}
/* --- 타임라인: 중앙 세로선 + 좌/우 교차 --- */
.dae-root .about-history-tl {
  position: relative;
  max-width: 1080px;
  margin: clamp(52px, 6vw, 90px) auto 0;
}
.dae-root .about-history-item {
  position: relative;
  width: 50%;
  padding: 0 clamp(28px, 4vw, 56px) clamp(38px, 4.5vw, 60px);
}
.dae-root .about-history-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.dae-root .about-history-item:nth-child(even) {
  left: 50%;
  text-align: left;
}
.dae-root .about-history-item::before {
  content: '';
  position: absolute;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffdcad;
  box-shadow: 0 0 0 4px rgba(255, 220, 173, 0.18);
}
.dae-root .about-history-item:nth-child(odd)::before { right: -4.5px; }
.dae-root .about-history-item:nth-child(even)::before { left: -4.5px; }
/* 점과 점 사이 구간선 — 항목의 점(top 14px 중심)에서 다음 항목의 점까지 */
.dae-root .about-history-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 14px;
  bottom: -14px;
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
}
.dae-root .about-history-item:nth-child(odd):not(:last-child)::after { right: -0.5px; }
.dae-root .about-history-item:nth-child(even):not(:last-child)::after { left: -0.5px; }
.dae-root .about-history-year {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.9vw, 1.8rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  color: #ffeab0;
}
.dae-root .about-history-item-title {
  margin-top: 10px;
  font-size: clamp(1.02rem, 1.25vw, 1.25rem);
  font-weight: 700;
  color: #fff;
}
.dae-root .about-history-item-desc {
  margin-top: 8px;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.8;
  color: #ffffff;
}
/* 모바일: 세로선을 왼쪽에 두고 전부 오른쪽 정렬 스택 */
@media (max-width: 768px) {
  .dae-root .about-history-band { padding: 70px 0; background-attachment: scroll; }
  .dae-root .about-history-item:not(:last-child)::after { left: 4px; right: auto; }
  .dae-root .about-history-item,
  .dae-root .about-history-item:nth-child(odd),
  .dae-root .about-history-item:nth-child(even) {
    left: 0;
    width: 100%;
    text-align: left;
    padding: 0 0 34px 26px;
  }
  .dae-root .about-history-item:nth-child(odd)::before,
  .dae-root .about-history-item:nth-child(even)::before { left: 0; right: auto; }
}

/* ============================================================
   회사소개 — 조직 구성 (About Organization, 흰 배경 4칼럼)
   partner-net 칼럼 문법의 라이트 버전: 왼쪽 헤어라인 + 메타/이름/설명
   ============================================================ */
.dae-root .about-org {
  padding: clamp(80px, 10vw, 150px) 0;
  background-color: #ffffff;
}
.dae-root .about-org-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.dae-root .about-org-sub {
  margin-top: 18px;
  max-width: 46em;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-muted);
}
.dae-root .about-org-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(20px, 2.5vw, 44px);
  row-gap: clamp(30px, 3.5vw, 52px);
}
.dae-root .about-org-col {
  padding-left: clamp(16px, 1.5vw, 24px);
  border-left: 1px solid var(--border-light);
}
.dae-root .about-org-meta {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #b57d2f;
}
.dae-root .about-org-name {
  margin-top: 12px;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .about-org-desc {
  margin-top: 10px;
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.8;
  color: var(--text-muted);
}
/* 오른쪽 스탯 컬럼 */
.dae-root .about-org-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(20px, 2.5vw, 44px);
  row-gap: clamp(30px, 3.5vw, 52px);
  margin-top: clamp(48px, 6vw, 80px);
}
.dae-root .about-org-stat {
  padding-left: clamp(16px, 1.5vw, 24px);
  border-left: 1px solid var(--border-light);
}
.dae-root .about-org-stat-label {
  display: block;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--text-muted);
}
.dae-root .about-org-stat-vals {
  margin-top: 6px;
  display: flex;
  align-items: baseline;
}
.dae-root .about-org-stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text-primary);
}
.dae-root .about-org-stat-unit {
  margin-left: 8px;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .dae-root .about-org { padding: 70px 0; }
  .dae-root .about-org-grid { grid-template-columns: 1fr; row-gap: 34px; }
  .dae-root .about-org-stats { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
}
@media (max-width: 560px) {
  .dae-root .about-org-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   회사소개 — 오시는 길 (About Location, 크림 배경 + 2거점 카드 + 정보 스트립)
   ============================================================ */
.dae-root .about-loc {
  padding: clamp(80px, 10vw, 150px) 0;
  background-color: var(--bg-primary);
}
.dae-root .about-loc-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.dae-root .about-loc-sub {
  margin-top: 18px;
  max-width: 46em;
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-muted);
}
.dae-root .about-loc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 48px);
}
.dae-root .about-loc-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
}
.dae-root .about-loc-map {
  position: relative;
  height: clamp(320px, 34vw, 520px);
  background: var(--bg-secondary);
  overflow: hidden;
}
.dae-root .about-loc-map-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.dae-root .about-loc-map-link:hover { background: rgba(197, 168, 128, 0.12); }
.dae-root .about-loc-map-link .icm { width: 22px; height: 22px; color: var(--accent); }
.dae-root .icm-pin { --icm: url('../img/dae/icons/pin.svg'); }
.dae-root .about-loc-map .root_daum_roughmap { width: 100% !important; }
.dae-root .about-loc-body {
  padding: clamp(22px, 2.5vw, 34px);
}
.dae-root .about-loc-tag {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #b57d2f;
}
.dae-root .about-loc-name {
  margin-top: 10px;
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .about-loc-addr {
  margin-top: 8px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.75;
  color: var(--text-muted);
}
.dae-root .about-loc-roles {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  color: var(--text-muted);
}
/* 회사 정보 스트립 — 조직 스탯과 같은 문법 */
.dae-root .about-loc-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(20px, 2.5vw, 44px);
  row-gap: clamp(26px, 3vw, 40px);
  margin-top: clamp(48px, 6vw, 80px);
}
.dae-root .about-loc-info-item {
  padding-left: clamp(16px, 1.5vw, 24px);
  border-left: 1px solid var(--border-light);
}
.dae-root .about-loc-info-label {
  display: block;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--text-muted);
}
.dae-root .about-loc-info-value {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.02rem, 1.2vw, 1.25rem);
  font-weight: 700;
  color: var(--text-primary);
}
@media (max-width: 900px) {
  .dae-root .about-loc { padding: 70px 0; }
  .dae-root .about-loc-grid { grid-template-columns: 1fr; }
  .dae-root .about-loc-info { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dae-root .about-loc-info { grid-template-columns: 1fr; }
}

/* ============================================================
   제품 소개 — 카테고리 풀폭 배너 (/products)
   ============================================================ */
/* 서브페이지 헤드 시작 높이 통일 — 회사소개/생산역량(manufacturing-intro)과 동일 */
.dae-root .pcat-head-wrap,
.dae-root .pgal,
.dae-root .blog-list,
.dae-root .post,
.dae-root .pview {
  padding-top: clamp(48px, 3.5vw, 72px);
}
.dae-root .pcat-head-wrap {
  padding-bottom: clamp(40px, 5vw, 70px);
}
.dae-root .pcat-list {
  display: flex;
  flex-direction: column;
}
.dae-root .pcat-banner {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100vh; /* 모니터 세로 꽉 (폴백) */
  height: 100svh;
  background-color: var(--bg-dark); /* 배너 이미지 없을 때 다크 박스 대기 */
}
.dae-root .pcat-banner + .pcat-banner {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.dae-root .pcat-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out-expo);
}
.dae-root .pcat-banner:hover .pcat-banner-bg { transform: scale(1.05); }
.dae-root .pcat-banner-scrim {
  display: none; /* 그라데이션/오버레이 없음 — 원본 이미지 그대로 */
}
.dae-root .pcat-banner { cursor: pointer; }
/* 배너 전체를 갤러리 링크로 (사진 영역 클릭 → 해당 제품 갤러리) */
.dae-root .pcat-banner-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.dae-root .pcat-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* 우측 정보 패널 */
  height: 100%;
  pointer-events: none; /* 빈 영역 클릭은 아래 배너 링크로 통과 */
}
/* 패널 내 실제 링크/버튼만 클릭 활성 (견적·카탈로그·카테고리명) */
.dae-root .pcat-banner-panel a,
.dae-root .pcat-banner-panel button {
  pointer-events: auto;
}
/* 우측 정보 패널 — 밝은 이미지 위 가독성용 프로스티드 다크 카드 */
.dae-root .pcat-banner-panel {
  width: min(460px, 100%);
  color: var(--text-primary);
}
.dae-root .pcat-banner-desc {
  margin: 14px 0 0;
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.75;
  color: var(--text-muted);
}
.dae-root .pcat-banner-specs {
  margin: clamp(20px, 2.4vw, 30px) 0 0;
}
.dae-root .pcat-banner-spec-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 11px 0;
  border-top: 1px solid var(--border-light);
}
.dae-root .pcat-banner-spec-row:last-child {
  border-bottom: 1px solid var(--border-light);
}
.dae-root .pcat-banner-spec-row dt {
  flex: 0 0 3.4em;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.8vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #b57d2f;
}
.dae-root .pcat-banner-spec-row dd {
  margin: 0;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--text-primary);
}
.dae-root .pcat-banner-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: clamp(24px, 2.8vw, 36px);
}
.dae-root .pcat-banner-actions .qc-btn { margin-top: 0; }
.dae-root .qc-btn--light {
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.dae-root .qc-btn--light:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
}
.dae-root .pcat-banner-catalog {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dae-root .pcat-banner-catalog:hover { color: var(--text-primary); }
.dae-root .pcat-banner-meta {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b57d2f;
}
.dae-root .pcat-banner-name {
  display: inline-block;
  margin-top: 8px;
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}
.dae-root .pcat-banner-name:hover { color: var(--accent-hover); }
.dae-root .pcat-banner-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
}
.dae-root .pcat-banner-cta .icm-arrow {
  width: 15px;
  height: 15px;
  transition: var(--transition-fast);
}
.dae-root .pcat-banner:hover .pcat-banner-cta .icm-arrow { transform: translateX(5px); }

/* ============================================================
   제품 갤러리 (/products/{카테고리}) — 썸네일 그리드
   ============================================================ */
.dae-root .pgal-head {
  margin-bottom: clamp(36px, 4.5vw, 64px);
}
.dae-root .pgal-back {
  color: inherit;
}
.dae-root .pgal-back:hover { color: var(--accent-hover); }
.dae-root .pgal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3px; /* 카드 사이 화이트 여백 — '47 스타일 얇은 구분 */
  row-gap: clamp(32px, 3.5vw, 48px);
}
.dae-root .pgal-card {
  display: block;
}
/* 썸네일 — 연한 회색 바탕 위 상품컷 ('47 스타일).
   흰 배경 상품사진은 multiply 블렌드로 바탕에 녹아듦. */
.dae-root .pgal-thumb {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fafafa;
}
.dae-root .pgal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  mix-blend-mode: multiply;
  transition: transform 0.9s var(--ease-out-expo);
}
.dae-root .pgal-card:hover .pgal-thumb img { transform: scale(1.05); }
.dae-root .pgal-title {
  display: block;
  margin-top: 12px;
  font-size: clamp(0.85rem, 0.98vw, 0.94rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
}
.dae-root .pgal-card:hover .pgal-title { color: var(--accent-hover); }
.dae-root .pgal-empty {
  padding: 60px 0;
  color: var(--text-muted);
}
.dae-root .pgal-paging {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: clamp(40px, 5vw, 64px);
}
.dae-root .pgal-paging .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}
.dae-root .pgal-paging .page-numbers.current,
.dae-root .pgal-paging .page-numbers:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
}
@media (max-width: 900px) {
  .dae-root .pgal-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   제품 뷰 (/product/{제품}) — 사진 + 사양 패널
   ============================================================ */
.dae-root .pview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.dae-root .pview-photos {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 26px);
}
.dae-root .pview-photo {
  width: 100%;
  height: auto;
  background: var(--bg-secondary);
}
.dae-root .pview-info {
  position: sticky;
  top: 120px; /* 고정 헤더 아래 */
}
.dae-root .pview-title {
  margin-top: 12px;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}
.dae-root .pview-desc {
  margin-top: 16px;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.85;
  color: var(--text-muted);
}
.dae-root .pview-desc p { margin: 0 0 12px; }
.dae-root .pview-specs {
  margin-top: clamp(24px, 3vw, 36px);
}
.dae-root .pview-spec-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--border-light);
}
.dae-root .pview-spec-row:last-child {
  border-bottom: 1px solid var(--border-light);
}
.dae-root .pview-spec-label {
  flex: 0 0 5.5em;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.82vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.dae-root .pview-spec-value {
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  color: var(--text-primary);
}
.dae-root .pview-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: clamp(26px, 3.2vw, 40px);
}
.dae-root .pview-actions .qc-btn { margin-top: 0; }
.dae-root .pview-backlink {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dae-root .pview-backlink:hover { color: var(--text-primary); }
@media (max-width: 900px) {
  .dae-root .pview-grid { grid-template-columns: 1fr; }
  .dae-root .pview-info { position: static; }
}

/* 제품 갤러리 — 카테고리 서브내비 (구사이트 탭 바 스타일) */
.dae-root .pgal-subnav {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: clamp(36px, 4.5vw, 64px);
}
.dae-root .pgal-subnav-item {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: clamp(12px, 1.4vw, 18px) clamp(6px, 1vw, 14px);
  transition: var(--transition-fast);
}
/* 활성 탭 하단 강조 라인 */
.dae-root .pgal-subnav-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--text-primary);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}
.dae-root .pgal-subnav-num {
  display: inline;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #b57d2f;
}
.dae-root .pgal-subnav-name {
  display: inline;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .pgal-subnav-en {
  display: inline;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 0.75vw, 0.72rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 6px;
}
.dae-root .pgal-subnav-item:hover .pgal-subnav-name { color: var(--accent-hover); }
.dae-root .pgal-subnav-item.active::after { transform: scaleX(1); }
.dae-root .pgal-subnav-item.active .pgal-subnav-num { color: #b57d2f; }
.dae-root .pgal-subnav-item.active .pgal-subnav-name { color: var(--text-primary); }
.dae-root .pgal-subnav-item.active .pgal-subnav-en { color: var(--text-muted); }
@media (max-width: 820px) {
  /* 모바일: 이미지 위 / 텍스트 아래 스택 — 가로 이미지가 세로 화면에서 잘려 모자가 안 보이는 문제 해결.
     모바일 전용 이미지 불필요 — 이미지를 크롭 없이 통짜로 노출. */
  .dae-root .pcat-banner {
    height: auto;
    min-height: 0;
    background-color: var(--bg-primary);
  }
  .dae-root .pcat-banner-bg {
    position: relative;
    height: auto; /* 전체 이미지 노출, 크롭 없음 → 모자 항상 보임 */
  }
  .dae-root .pcat-banner:hover .pcat-banner-bg { transform: none; }
  .dae-root .pcat-banner-inner {
    position: relative;
    display: block;
    height: auto;
    padding: clamp(26px, 6vw, 42px);
  }
  .dae-root .pcat-banner-panel { width: 100%; }
}
@media (max-width: 560px) {
  .dae-root .pgal-subnav { grid-template-columns: repeat(2, 1fr); }
  .dae-root .pgal-subnav-item { padding: 12px 10px; }
  .dae-root .pgal-subnav-en { display: none; }
}

/* 단체 카테고리 — 풀폭 가로 배너 갤러리 (pcat-banner 재사용 변형) */
.dae-root .pgal-widelist {
  margin-top: clamp(8px, 1vw, 16px);
}
.dae-root .pgal-widelist .pcat-banner {
  height: clamp(360px, 48vw, 680px);
  background: #fafafa;
}
.dae-root .pgal-widelist .pcat-banner-bg {
  top: 50%;
  left: 50%;
  width: 94%;
  height: 94%;
  object-fit: contain;
  object-position: center center;
  padding: 0;
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
}
.dae-root .pgal-widelist .pcat-banner:hover .pcat-banner-bg {
  transform: translate(-50%, -50%);
}
.dae-root .pgal-widelist + .container-full .pgal-paging:empty {
  display: none;
}
@media (max-width: 820px) {
  .dae-root .pgal-widelist .pcat-banner-bg {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: auto;
    transform: none;
  }
  .dae-root .pgal-widelist .pcat-banner:hover .pcat-banner-bg {
    transform: none;
  }
}

/* 문의 폼 — 허니팟 / 개인정보 동의 / 리캡차 */
.dae-root .dae-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.dae-root .form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 18px;
  font-size: clamp(0.82rem, 0.95vw, 0.9rem);
  line-height: 1.6;
  color: var(--text-primary);
}
.dae-root .form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--accent);
  cursor: pointer;
}
.dae-root .form-consent label { cursor: pointer; }
.dae-root .form-consent a {
  color: var(--text-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dae-root .g-recaptcha { margin-bottom: 18px; }

/* ============================================================
   블로그 — 목록 (/blog)
   ============================================================ */
.dae-root .blog-featured-list {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: clamp(36px, 5vw, 72px);
}
.dae-root .blog-featured-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  min-height: clamp(280px, 28vw, 390px);
  overflow: hidden;
  background: #f6f6f3;
  border: 1px solid rgba(18, 18, 18, 0.09);
}
.dae-root .blog-featured-thumb {
  position: relative;
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #f3f3f0;
}
.dae-root .blog-featured-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.9s var(--ease-out-expo);
}
.dae-root .blog-featured-card:hover .blog-featured-thumb img { transform: scale(1.04); }
.dae-root .blog-featured-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(28px, 4.2vw, 64px);
}
.dae-root .blog-featured-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 11px;
  margin-bottom: 12px;
  border: 1px solid rgba(181, 125, 47, 0.35);
  color: #9c6a25;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}
.dae-root .blog-featured-title {
  display: block;
  max-width: 720px;
  margin-top: 10px;
  font-size: clamp(1.8rem, 3.1vw, 3.15rem);
  font-weight: 800;
  line-height: 1.18;
  color: var(--text-primary);
}
.dae-root .blog-featured-card:hover .blog-featured-title { color: var(--accent-hover); }
.dae-root .blog-featured-excerpt {
  display: -webkit-box;
  max-width: 680px;
  margin-top: 18px;
  overflow: hidden;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-muted);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.dae-root .blog-featured-more {
  display: block;
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-transform: uppercase;
}
.dae-root .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(18px, 2.2vw, 36px);
}
.dae-root .blog-card { display: block; }
.dae-root .blog-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3f3f0;
}
.dae-root .blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.9s var(--ease-out-expo);
}
.dae-root .blog-card:hover .blog-thumb img { transform: scale(1.05); }
.dae-root .blog-thumb-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.dae-root .blog-thumb-empty img {
  width: clamp(56px, 6vw, 84px);
  height: auto;
  opacity: 0.35;
  object-fit: contain;
  transition: none;
}
.dae-root .blog-card-meta {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.8vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #b57d2f;
}
.dae-root .blog-card-title {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.05rem, 1.25vw, 1.25rem);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-primary);
}
.dae-root .blog-card:hover .blog-card-title { color: var(--accent-hover); }
.dae-root .blog-card-excerpt {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.86rem, 0.98vw, 0.95rem);
  line-height: 1.75;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .dae-root .blog-featured-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .dae-root .blog-featured-thumb {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
  .dae-root .blog-featured-body { padding: 26px 22px 30px; }
  .dae-root .blog-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   블로그 — 글 상세 (본문 타이포 = 구텐베르크 출력 대응)
   ============================================================ */
/* 블로그 목록 프레임 */
.dae-root .blog-list .container-full {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}
.dae-root .blog-list .pgal-head {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: clamp(24px, 7vw, 100px);
  padding-right: clamp(24px, 7vw, 100px);
}
/* 블로그 상세 — 왼쪽 목차 + 오른쪽 880px 본문 컬럼 */
.dae-root .post-inner {
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}
.dae-root .post-layout {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(0, 880px);
  justify-content: stretch;
  column-gap: clamp(36px, 4vw, 72px);
  align-items: start;
}
.dae-root .post-layout--notoc {
  grid-template-columns: minmax(0, 880px);
  justify-content: center;
}
.dae-root .post-head {
  max-width: none;
  margin: 0 auto clamp(44px, 5vw, 72px);
}
.dae-root .post-head--notoc {
  max-width: 880px;
}
.dae-root .post-toc {
  align-self: stretch;
}
.dae-root .post-toc-inner {
  position: sticky;
  top: 130px;
  max-width: 320px;
}
.dae-root .post-main {
  min-width: 0;
}
/* 본문 텍스트는 가독폭 유지 (제목·대표이미지는 1280 풀) */
.dae-root .post-body {
  max-width: 880px;
}
.dae-root .post-title {
  margin-top: 14px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
}
.dae-root .post-meta {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(0.72rem, 0.85vw, 0.8rem);
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.dae-root .post-hero {
  margin: clamp(28px, 3.5vw, 48px) 0 clamp(44px, 5.5vw, 80px);
}
.dae-root .post-hero img {
  width: 100%;
  height: auto;
}
.dae-root .post-body {
  margin-top: clamp(30px, 3.5vw, 48px);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.95;
  color: #33302a;
}
.dae-root .post-body p { margin: 0 0 1.4em; }
.dae-root .post-body h2 {
  margin: 2em 0 0.7em;
  font-size: clamp(1.35rem, 1.8vw, 1.7rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .post-body h3 {
  margin: 1.8em 0 0.6em;
  font-size: clamp(1.15rem, 1.4vw, 1.35rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .post-body img {
  max-width: 100%;
  height: auto;
  margin: 0.5em 0;
}
.dae-root .post-body figure { margin: 1.6em 0; }
.dae-root .post-body figcaption {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
}
.dae-root .post-body ul, .dae-root .post-body ol {
  margin: 0 0 1.4em;
  padding-left: 1.4em;
}
.dae-root .post-body ul { list-style: disc; }
.dae-root .post-body ol { list-style: decimal; }
.dae-root .post-body li { margin-bottom: 0.4em; }
.dae-root .post-body blockquote {
  margin: 1.8em 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--accent);
  color: var(--text-muted);
}
.dae-root .post-body a {
  color: #b57d2f;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dae-root .post-body strong { font-weight: 700; color: var(--text-primary); }
.dae-root .post-nav {
  margin-top: clamp(52px, 6.5vw, 88px);
  padding-top: clamp(24px, 2.8vw, 34px);
  border-top: 1px solid var(--border-light);
}
/* 이전/다음 2칸 (위) */
.dae-root .post-nav-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 32px);
}
.dae-root .post-nav-col { min-width: 0; }
.dae-root .post-nav-col--next { text-align: right; }
.dae-root .post-nav-col--next:only-child,
.dae-root .post-nav-col:empty { }
.dae-root .post-nav-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}
.dae-root .post-nav-title {
  display: block;
  margin-top: 6px;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-primary);
}
.dae-root .post-nav-col a:hover .post-nav-title { color: var(--accent-hover); }
.dae-root .post-nav-list {
  display: inline-flex;
  margin-top: clamp(24px, 3vw, 36px);
}
.dae-root .post-nav-foot {
  display: flex;
  justify-content: center;
}
@media (max-width: 620px) {
  .dae-root .post-nav-cols { grid-template-columns: 1fr; gap: 20px; }
  .dae-root .post-nav-col--next { text-align: left; }
}


/* 제작 안내 등 — 인트로 헤드만 있는 페이지 하단 여백 보정 */
.dae-root .about-intro-headonly {
  padding-bottom: clamp(14px, 2vw, 30px);
}
.dae-root .about-intro-headonly .about-history-sub {
  color: var(--text-muted);
}


/* ============================================================
   제작 안내 — 6단계 프로세스 (3×2 그리드)
   ============================================================ */
.dae-root .oem-steps {
  padding-top: clamp(16px, 2vw, 32px);
  padding-bottom: clamp(36px, 4.5vw, 64px);
  background-color: #ffffff;
}
.dae-root .oem-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(24px, 3vw, 56px);
  row-gap: clamp(44px, 5vw, 76px);
}
.dae-root .oem-step {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-dark);
}
.dae-root .oem-step-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center; /* 크롭 기준 오른쪽 — 이미지 오른쪽 부분이 더 보임 */
  transition: transform 0.9s var(--ease-out-expo);
}
.dae-root .oem-step:hover .oem-step-bg { transform: scale(1.05); }
.dae-root .oem-step-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(0,0,0,0.5) 0%,
    rgba(0,0,0,0.32) 46%,
    rgba(0,0,0,0.08) 100%);
}
.dae-root .oem-step-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center; /* 세로 중앙 */
  align-items: flex-start; /* 왼쪽 정렬 */
  padding: clamp(24px, 2.4vw, 38px);
  color: #fff;
}
.dae-root .oem-step-label {
  font-family: var(--font-display);
  font-size: clamp(0.68rem, 0.8vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #ffdcad;
}
.dae-root .oem-step-title {
  margin-top: 12px;
  font-size: clamp(1.4rem, 1.9vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}
.dae-root .oem-step-en {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.7);
}
.dae-root .oem-step-desc {
  margin-top: 14px;
  max-width: 22em;
  font-size: clamp(0.86rem, 0.98vw, 0.96rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}
.dae-root .oem-step-desc-en {
  margin-top: 8px;
  max-width: 24em;
  font-family: var(--font-display);
  font-size: clamp(0.74rem, 0.85vw, 0.82rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 820px) {
  .dae-root .oem-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .dae-root .oem-steps-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   제작 안내 — 직거래의 장점 (다이어그램 + 6개 카드)
   ============================================================ */
.dae-root .oem-direct {
  background-color: var(--bg-primary);
}
.dae-root .oem-direct-head {
  text-align: center;
  max-width: 40em;
  margin: 0 auto clamp(48px, 6vw, 84px);
}
.dae-root .oem-direct-head .about-history-sub {
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
}

/* --- 다이어그램 --- */
.dae-root .odc-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.dae-root .odc {
  --oc: 84px;
  display: flex;
  align-items: flex-start;
  min-width: 860px;
  padding: 8px clamp(4px, 2vw, 20px) 4px;
}
.dae-root .odc-chain {
  display: flex;
  align-items: flex-start;
}
.dae-root .odc-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.dae-root .odc-circle {
  width: var(--oc);
  height: var(--oc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(40, 35, 28, 0.06);
  color: rgba(60, 55, 48, 0.34); /* 흐린 아이콘 */
}
.dae-root .odc-circle .icm { width: 36px; height: 36px; }
.dae-root .odc-circle--dark {
  background: var(--bg-dark);
  color: #fff;
  box-shadow: 0 14px 34px rgba(18, 17, 15, 0.28);
}
.dae-root .odc-label {
  font-size: clamp(0.85rem, 1vw, 0.98rem);
  color: rgba(60, 55, 48, 0.42);
}
.dae-root .odc-label--bold {
  color: var(--text-primary);
  font-weight: 700;
}
.dae-root .odc-dots {
  width: 56px;
  margin-top: calc(var(--oc) / 2 - 1px);
  border-top: 2px dotted rgba(60, 55, 48, 0.32);
  flex-shrink: 0;
}
.dae-root .odc-bridge {
  position: relative;
  flex: 1 1 auto;
  min-width: 300px;
  margin-top: calc(var(--oc) / 2 - 1px);
}
.dae-root .odc-line {
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right,
    rgba(26, 24, 20, 0) 0%,
    rgba(26, 24, 20, 0.12) 14%,
    #1a1814 52%,
    #1a1814 100%);
}
.dae-root .odc-line::after {
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1a1814;
  transform: translate(50%, -50%);
}
.dae-root .odc-text {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  white-space: nowrap;
  text-align: center;
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text-primary);
}

@media (max-width: 700px) {
  .dae-root .odc-scroll {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .dae-root .odc {
    --oc: 68px;
    min-width: 0;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 4px 0;
  }

  .dae-root .odc-chain {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
    width: 100%;
  }

  .dae-root .odc-node {
    min-width: 0;
    gap: 10px;
  }

  .dae-root .odc-circle .icm {
    width: 28px;
    height: 28px;
  }

  .dae-root .odc-dots {
    display: none;
  }

  .dae-root .odc-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    gap: 16px;
  }

  .dae-root .odc-text {
    position: static;
    transform: none;
    white-space: normal;
    max-width: 260px;
    font-size: clamp(1.05rem, 5vw, 1.35rem);
  }

  .dae-root .odc-line {
    width: 2px;
    height: 42px;
    background: linear-gradient(to bottom,
      rgba(26, 24, 20, 0.1) 0%,
      #1a1814 100%);
  }

  .dae-root .odc-line::after {
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translate(50%, 50%);
  }
}

/* --- 6개 카드 --- */
.dae-root .oem-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: clamp(24px, 3vw, 56px);
  row-gap: clamp(44px, 5vw, 72px);
  margin-top: clamp(64px, 8vw, 120px);
}
.dae-root .oem-benefit {
  padding-top: clamp(20px, 2.4vw, 28px);
  border-top: 1px solid var(--border-light);
}
.dae-root .oem-benefit-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.82vw, 0.78rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #b57d2f;
}
.dae-root .oem-benefit-title {
  margin-top: 12px;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .oem-benefit-desc {
  margin-top: 10px;
  font-size: clamp(0.9rem, 1.02vw, 1rem);
  line-height: 1.8;
  color: var(--text-muted);
}
@media (max-width: 820px) {
  .dae-root .oem-benefits { grid-template-columns: repeat(2, 1fr); }
  .dae-root .odc-text { white-space: normal; width: 12em; }
}
@media (max-width: 520px) {
  .dae-root .oem-benefits { grid-template-columns: 1fr; }
}

/* 직거래 다이어그램 아이콘 (.icm mask) */
.dae-root .icm-du-user { --icm: url('../img/dae/icons/du-user.svg'); }
.dae-root .icm-du-building { --icm: url('../img/dae/icons/du-building.svg'); }
.dae-root .icm-du-clipboard { --icm: url('../img/dae/icons/du-clipboard.svg'); }
.dae-root .icm-du-box { --icm: url('../img/dae/icons/du-box.svg'); }
.dae-root .icm-du-factory { --icm: url('../img/dae/icons/phil2.svg'); }


/* ============================================================
   제작 안내 — 후가공 (k1 배경 다크 밴드 + 헤드 + 6개 항목)
   ============================================================ */
.dae-root .oem-finish {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 140px) 0;
  background-color: var(--bg-dark);
}
.dae-root .oem-finish-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dae-root .oem-finish-scrim {
  position: absolute;
  inset: 0;
  /* 전체 0.45 + 아래쪽만 살짝 더 어둡게 */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.75) 100%);
}
.dae-root .oem-finish-inner {
  position: relative;
  z-index: 2;
}
.dae-root .oem-finish-head {
  max-width: 42em;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.dae-root .oem-finish-head .manufacturing-eyebrow { color: #ffdcad; }
.dae-root .oem-finish-head .manufacturing-title { color: #fff; }
.dae-root .oem-finish-head .about-history-sub { color: rgba(255,255,255,0.82); }
.dae-root .oem-finish-head .qc-btn {
  margin-top: clamp(24px, 3vw, 38px);
  background: #ffffff;
  border-color: #ffffff;
  color: var(--text-primary);
}
.dae-root .oem-finish-head .qc-btn:hover {
  background: rgba(255,255,255,0.86);
  border-color: rgba(255,255,255,0.86);
  color: var(--text-primary);
}
/* 후가공 항목 — 큰 번호 앞서는 가로 리스트 (2열) */
.dae-root .oem-finish-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(40px, 5vw, 90px);
}
.dae-root .oem-finish-row {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 1.8vw, 26px);
  padding: clamp(22px, 2.6vw, 32px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16); /* 기존 반투명 전폭선 유지 */
}
.dae-root .oem-finish-row:first-child,
.dae-root .oem-finish-row:nth-child(2) {
  border-top: 0; /* 자수·나염(첫 행) 위쪽 라인 숨김 */
}
.dae-root .oem-finish-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 33%;
  height: 1px;
  background: #ffffff;
}
.dae-root .oem-finish-ricon {
  flex-shrink: 0;
  width: clamp(44px, 4.4vw, 54px);
  height: clamp(44px, 4.4vw, 54px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffdcad;
}
.dae-root .oem-finish-ricon .icm {
  width: clamp(22px, 2.2vw, 26px);
  height: clamp(22px, 2.2vw, 26px);
}
.dae-root .oem-finish-rbody { padding-top: 2px; }
.dae-root .oem-finish-rnum {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.66rem, 0.78vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 220, 173, 0.75);
}
.dae-root .oem-finish-rtitle {
  margin-top: 6px;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
}
.dae-root .oem-finish-rdesc {
  margin-top: 6px;
  font-size: clamp(0.86rem, 0.98vw, 0.96rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}
@media (max-width: 700px) {
  .dae-root .oem-finish-list { grid-template-columns: 1fr; }
  .dae-root .oem-finish-row:nth-child(2) { border-top: 0; }
}

/* 후가공 아이콘 (.icm mask) */
.dae-root .icm-fin-embroidery { --icm: url('../img/dae/icons/fin-embroidery.svg'); }
.dae-root .icm-fin-print { --icm: url('../img/dae/icons/fin-print.svg'); }
.dae-root .icm-fin-wash { --icm: url('../img/dae/icons/fin-wash.svg'); }
.dae-root .icm-fin-transfer { --icm: url('../img/dae/icons/fin-transfer.svg'); }
.dae-root .icm-fin-label { --icm: url('../img/dae/icons/fin-label.svg'); }
.dae-root .icm-fin-buckle { --icm: url('../img/dae/icons/fin-buckle.svg'); }

/* 포트폴리오 등 밝은 헤드의 tint 강조색 — 히어로용 #ffeab0 대신 브론즈 */
.dae-root .about-intro-headonly .manufacturing-title .tint { color: #b57d2f; }


/* ============================================================
   포트폴리오 — 실적 이미지 밴드 (gal 배경 + 텍스트 오버레이)
   ============================================================ */
.dae-root .pf-gal {
  position: relative;
  overflow: hidden;
  height: clamp(480px, 72vh, 860px);
  background-color: var(--bg-dark);
}
.dae-root .pf-gal-bg {
  position: absolute;
  left: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top; /* 인물 머리 잘리지 않게 위쪽 기준 */
  will-change: transform;
}
.dae-root .pf-gal-scrim { display: none; }
.dae-root .pf-gal-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center; /* 세로 중앙 */
}
.dae-root .pf-gal-text {
  max-width: 42em;
  font-size: clamp(1.35rem, 2.2vw, 2.3rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--text-primary);
}
.dae-root .pf-gal-mobile-break {
  display: none;
}
.dae-root .pf-gal-en {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

@media (max-width: 700px) {
  .dae-root .pf-gal {
    height: clamp(420px, 62vh, 560px);
  }

  .dae-root .pf-gal-inner {
    align-items: flex-start;
    padding-top: clamp(92px, 17vh, 124px);
  }

  .dae-root .pf-gal-text {
    max-width: 15.5em;
    font-size: clamp(1rem, 4.8vw, 1.28rem);
    line-height: 1.52;
  }

  .dae-root .pf-gal-mobile-break {
    display: block;
  }

  .dae-root .pf-gal-en {
    margin-top: 12px;
    max-width: 18em;
    font-size: 0.76rem;
    line-height: 1.45;
  }
}


/* 포트폴리오 헤드 — '4년간 760,000+'는 원래 크기, '모자를 만들었습니다.'만 작게 (크기 대비) */
.dae-root .pf-head .pf-head-sub {
  font-size: 0.5em;
  font-weight: 600;
  letter-spacing: 0;
}


/* ============================================================
   포트폴리오 — 주요 거래 브랜드 (fes 배경 다크 + 마퀴 흐름)
   ============================================================ */
.dae-root .pf-brands {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0;
  background-color: var(--bg-dark);
}
.dae-root .pf-brands-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dae-root .pf-brands-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(12,11,9,0.82) 0%,
    rgba(12,11,9,0.66) 50%,
    rgba(12,11,9,0.82) 100%);
}
.dae-root .pf-brands-inner {
  position: relative;
  z-index: 2;
}
.dae-root .pf-brands-head {
  margin-bottom: clamp(44px, 5.5vw, 76px);
}
.dae-root .pf-brands-head .manufacturing-eyebrow { color: #ffdcad; }
.dae-root .pf-brands-head .manufacturing-title { color: #fff; }
.dae-root .pf-brands-head .about-history-sub { color: rgba(255,255,255,0.8); }

/* 마퀴 — 왼→오른쪽 흐름 (트랙을 -50% 로 이동, 카드 2배 복제로 무한 루프) */
.dae-root .pf-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.dae-root .pf-marquee-track {
  display: flex;
  width: max-content;
  animation: pf-marquee 34s linear infinite;
}
.dae-root .pf-marquee:hover .pf-marquee-track { animation-play-state: paused; }
@keyframes pf-marquee {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.dae-root .pf-brand-card {
  flex-shrink: 0;
  width: clamp(220px, 22vw, 300px);
  padding: clamp(8px, 1vw, 16px) clamp(24px, 2.4vw, 40px);
}
.dae-root .pf-brand-cat {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(0.66rem, 0.78vw, 0.74rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #ffdcad;
}
.dae-root .pf-brand-en {
  display: block;
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2.1rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
}
.dae-root .pf-brand-ko {
  display: block;
  margin-top: 6px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: rgba(255,255,255,0.62);
}
.dae-root .pf-brands-note {
  margin-top: clamp(34px, 4vw, 54px);
  font-size: clamp(0.78rem, 0.9vw, 0.86rem);
  color: rgba(255,255,255,0.5);
}
@media (prefers-reduced-motion: reduce) {
  .dae-root .pf-marquee-track { animation: none; transform: translateX(0); }
}


/* ============================================================
   포트폴리오 — 생산 실적 막대 그래프 (밑→위 자람)
   ============================================================ */
.dae-root .pf-chart {
  background-color: #ffffff;
}
.dae-root .pf-chart-head {
  margin-bottom: clamp(48px, 6vw, 84px);
}
.dae-root .pf-chart-graph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(14px, 2vw, 34px);
  align-items: end;
  padding-left: clamp(16px, 2vw, 30px);
  padding-bottom: 0;
}
/* 축 영역 높이 = 막대 트랙 높이 (값 라벨 위 공간 제외) 기준으로 바닥/왼쪽 라인 */
.dae-root .pf-chart-plot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(200px, 30vw, 380px);
  margin-bottom: clamp(56px, 6vw, 74px); /* 연도·설명 영역 비움 */
  pointer-events: none;
  z-index: 0;
}
.dae-root .pf-chart-plot::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--text-primary);
}
.dae-root .pf-chart-plot::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--text-primary);
}
/* 수평 격자선 (25% 간격 3개) */
.dae-root .pf-grid-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-light);
}
.dae-root .pf-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.dae-root .pf-bar-val {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.3vw, 1.35rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  white-space: nowrap;
}
.dae-root .pf-bar-val-unit {
  font-size: 0.7em;
  font-weight: 500;
  color: var(--text-muted);
}
.dae-root .pf-bar-track {
  width: 100%;
  max-width: 96px;
  height: clamp(200px, 30vw, 380px);
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.dae-root .pf-bar-fill {
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, #d8bd97 0%, #c5a880 55%, #b0946e 100%);
  transition: height 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0s);
}
.dae-root .pf-bar-fill--extra {
  background: repeating-linear-gradient(
    45deg,
    #c5a880, #c5a880 6px,
    #b0946e 6px, #b0946e 12px);
}
/* fade-up.visible 될 때 막대가 목표 높이로 자람 */
.dae-root .pf-chart-graph.visible .pf-bar-fill { height: var(--h); }
.dae-root .pf-bar-year {
  margin-top: 14px;
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.1vw, 1.15rem);
  font-weight: 700;
  color: var(--text-primary);
}
.dae-root .pf-bar-desc {
  margin-top: 6px;
  max-width: 12em;
  font-size: clamp(0.74rem, 0.88vw, 0.86rem);
  line-height: 1.55;
  color: var(--text-muted);
}
.dae-root .pf-bar--extra .pf-bar-year { color: #b57d2f; }
@media (max-width: 700px) {
  .dae-root .pf-chart-graph {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
    padding-left: 0;
  }
  /* 모바일(가로막대)에서는 세로축·바닥선·격자선 숨김 — 리스트 라인과 겹침 방지 */
  .dae-root .pf-chart-plot { display: none; }
  /* 모바일: 가로 막대 리스트로 전환 */
  .dae-root .pf-bar {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    text-align: left;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
  }
  .dae-root .pf-bar-track {
    order: 3;
    height: 12px;
    max-width: none;
    flex: 1;
    align-items: stretch;
    border-bottom: 0;
  }
  .dae-root .pf-bar-fill { height: 100%; width: 0; transition: width 1.1s cubic-bezier(0.16,1,0.3,1); transition-delay: var(--d,0s); }
  .dae-root .pf-chart-graph.visible .pf-bar-fill { width: var(--h); height: 100%; }
  .dae-root .pf-bar-val { order: 4; margin-bottom: 0; }
  .dae-root .pf-bar-year { order: 1; margin-top: 0; min-width: 3em; }
  .dae-root .pf-bar-desc { order: 2; margin-top: 0; max-width: 14em; }
}


/* 생산 실적 — 요약 스탯 4개 (차트 하단) */
.dae-root .pf-chart-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: clamp(20px, 2.5vw, 44px);
  row-gap: clamp(30px, 3.5vw, 44px);
  margin-top: clamp(56px, 7vw, 100px);
  padding-top: clamp(36px, 4vw, 56px);
  border-top: 1px solid var(--border-light);
}
.dae-root .pf-stat {
  padding-left: clamp(16px, 1.5vw, 24px);
  border-left: 1px solid var(--border-light);
}
.dae-root .pf-stat-label {
  display: block;
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  color: var(--text-muted);
}
.dae-root .pf-stat-val {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--text-primary);
}
.dae-root .pf-stat-desc {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.82rem, 0.95vw, 0.92rem);
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .dae-root .pf-chart-stats { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================================
   블로그 상세 — 왼쪽 목차(TOC) 2컬럼 레이아웃
   ============================================================ */
.dae-root .post-layout .post-body {
  max-width: none;
  margin-top: 0;
}
.dae-root .post-main .post-hero {
  margin-top: 0;
  margin-bottom: clamp(30px, 4vw, 52px);
}
/* 목차 사이드바 — 스크롤 따라 고정 */

.dae-root .post-toc-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b57d2f;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
}
.dae-root .post-toc ul { list-style: none; margin: 0; padding: 0; }
.dae-root .post-toc li { margin: 0; }
.dae-root .post-toc li.lv-3 { padding-left: 12px; }
.dae-root .post-toc a {
  display: block;
  padding: 6px 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
  border-left: 2px solid transparent;
  padding-left: 12px;
  margin-left: -14px;
  transition: color 0.2s, border-color 0.2s;
}
.dae-root .post-toc li.lv-3 a { font-size: 0.83rem; }
.dae-root .post-toc a:hover { color: var(--text-primary); }
.dae-root .post-toc a.active {
  color: var(--text-primary);
  border-left-color: var(--accent);
  font-weight: 600;
}
/* 앵커 스크롤 시 고정 헤더에 안 가리게 */
.dae-root .post-body h2,
.dae-root .post-body h3 {
  scroll-margin-top: 110px;
}
/* 좁은 화면: 목차를 본문 위 박스로 */
@media (max-width: 1200px) {
  .dae-root .post-layout,
  .dae-root .post-layout--notoc {
    display: block;
  }
  .dae-root .post-toc {
    margin: 0 0 clamp(28px, 4vw, 40px);
    padding: 18px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-primary);
  }
  .dae-root .post-toc-inner { position: static; }
  .dae-root .post-toc-label { margin-bottom: 8px; }
}


/* 블로그 상세 article — 헤드 상단 여백 + 푸터와 확실한 하단 분리 (명시) */
.dae-root article.post {
  padding-top: clamp(40px, 3.5vw, 64px);
  padding-bottom: clamp(72px, 8vw, 120px);
}


/* ============================================================
   포트폴리오 — 납품 사례 (3×2 그리드, 사진 위 캡션)
   ============================================================ */
.dae-root .pf-cases {
  background-color: #ffffff;
  padding-top: clamp(20px, 2.5vw, 40px);
}
.dae-root .pf-cases-head {
  margin-bottom: clamp(44px, 5.5vw, 76px);
}
.dae-root .pf-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 30px);
}
.dae-root .pf-case {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-secondary);
}
.dae-root .pf-case-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out-expo);
}
.dae-root .pf-case:hover .pf-case-img { transform: scale(1.05); }
.dae-root .pf-case-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.02) 50%,
    rgba(0,0,0,0.42) 100%);
}
.dae-root .pf-case-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(18px, 2vw, 26px);
  font-size: clamp(0.92rem, 1.1vw, 1.08rem);
  font-weight: 600;
  line-height: 1.45;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0,0,0,0.4);
}
@media (max-width: 820px) {
  .dae-root .pf-cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .dae-root .pf-cases-grid { grid-template-columns: 1fr; }
}

/* 갤러리 제목 옆 영문 병기 */
.dae-root .pgal-title-en {
  margin-left: 0.5em;
  font-family: var(--font-display);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  vertical-align: middle;
}

/* 클릭 비활성 제품 카드 (뷰페이지 미연결) */
.dae-root .pgal-card--nolink { cursor: default; }
.dae-root .pgal-card--nolink:hover .pgal-title { color: var(--text-primary); }

/* 제품 카테고리 요약 — 갤러리 하단 CTA 위 */
.dae-root .pgal-category-info {
  width: 100%;
  max-width: none;
  margin: clamp(48px, 6vw, 84px) auto 0;
  padding-top: clamp(28px, 3.4vw, 44px);
  border-top: 1px solid var(--border-light);
}
.dae-root .pgal-category-desc {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.85;
  color: var(--text-primary);
  text-align: center;
}
.dae-root .pgal-category-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: clamp(22px, 2.8vw, 34px) 0 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.dae-root .pgal-category-spec-row {
  min-width: 0;
  padding: 18px 18px 20px;
  border-left: 1px solid var(--border-light);
}
.dae-root .pgal-category-spec-row:first-child { border-left: 0; }
.dae-root .pgal-category-spec-row dt {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #b57d2f;
}
.dae-root .pgal-category-spec-row dd {
  margin: 8px 0 0;
  font-size: clamp(0.86rem, 1vw, 0.95rem);
  line-height: 1.55;
  color: var(--text-primary);
}
@media (max-width: 900px) {
  .dae-root .pgal-category-specs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dae-root .pgal-category-spec-row:nth-child(odd) { border-left: 0; }
  .dae-root .pgal-category-spec-row:nth-child(n+3) { border-top: 1px solid var(--border-light); }
}
@media (max-width: 560px) {
  .dae-root .pgal-category-desc { text-align: left; }
  .dae-root .pgal-category-specs { grid-template-columns: 1fr; }
  .dae-root .pgal-category-spec-row,
  .dae-root .pgal-category-spec-row:nth-child(n) {
    border-left: 0;
    border-top: 1px solid var(--border-light);
  }
  .dae-root .pgal-category-spec-row:first-child { border-top: 0; }
}

/* 갤러리 하단 CTA (견적 / 카탈로그) */
.dae-root .pgal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: clamp(28px, 3.5vw, 44px);
}
.dae-root .pgal-cta .qc-btn { margin-top: 0; }
.dae-root .pgal-cta-catalog {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.dae-root .pgal-cta-catalog:hover { color: var(--text-primary); }

/* 보조 버튼 — 연한 아웃라인 (샘플 카탈로그 등) */
.dae-root .qc-btn--ghost {
  border-color: var(--border-light);
  color: var(--text-muted);
}
.dae-root .qc-btn--ghost:hover {
  border-color: var(--text-primary);
  background: transparent;
  color: var(--text-primary);
}
.dae-root .pgal-cta .qc-btn--ghost { margin-top: 0; }

/* 단체 갤러리 배너 — 텍스트 오버레이 숨김 (사진만) */
.dae-root .pgal-widelist .pcat-banner-inner { display: none; }

/* 클릭 비활성 배너 (단체 갤러리) */
.dae-root .pcat-banner--nolink { cursor: default; }
