/* ============================================================
   대성화스너 — 서브 페이지 공통 스타일
   (회사 개요, 연혁, 조직도, 오시는 길 등 모든 서브 페이지가 로드)
   ============================================================ */

/* ============ PAGE HERO ============ */
  .page-hero {
    padding: 140px 48px 80px;
    background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
  }
  .page-hero-hex {
    position: absolute;
    top: 0; right: 0;
    width: 600px; height: 600px;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='104' viewBox='0 0 120 104'><path d='M60 0L120 34.6V69.3L60 104L0 69.3V34.6L60 0Z' fill='none' stroke='%2316A34A' stroke-width='1'/></svg>");
    background-size: 120px 104px;
  }
  .page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-3);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
    text-transform: uppercase;
  }
  .breadcrumb a {
    color: var(--text-3);
    text-decoration: none;
    transition: color 0.2s;
  }
  .breadcrumb a:hover { color: var(--green); }
  .breadcrumb .sep { color: var(--text-4); }
  .breadcrumb .current { color: var(--green); font-weight: 600; }
  .page-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-mono);
    color: var(--green);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 5px 12px;
    border: 1px solid var(--green-tint);
    border-radius: 100px;
    background: var(--green-bg);
  }
  .page-title {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.035em;
    color: var(--text-1);
    margin-bottom: 20px;
    max-width: 900px;
  }
  .page-title em {
    color: var(--green);
    letter-spacing: -0.01em;
  }
  .page-subtitle {
    font-size: 19px;
    color: var(--text-3);
    line-height: 1.6;
    max-width: 720px;
  }

  
/* ============ MAIN BODY ============ */
  .page-body {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 48px 120px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 80px;
    align-items: flex-start;
  }
  .sidebar { position: sticky; top: 100px; }
  .sidebar-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-4);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }
  .sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .sidebar-menu li a {
    display: block;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s var(--ease-expo);
    position: relative;
  }
  .sidebar-menu li a::before {
    content: '';
    position: absolute;
    left: -1px; top: 50%;
    transform: translateY(-50%);
    width: 2px; height: 0;
    background: var(--green);
    border-radius: 2px;
    transition: height 0.3s var(--ease-expo);
  }
  .sidebar-menu li a:hover {
    background: var(--bg-soft);
    color: var(--text-1);
  }
  .sidebar-menu li a.active {
    background: var(--green-bg);
    color: var(--green-dark);
    font-weight: 600;
  }
  .sidebar-menu li a.active::before { height: 60%; }
  .sidebar-cta {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-dark);
    border-radius: 14px;
    color: #fff;
  }
  .sidebar-cta-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--green-soft);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .sidebar-cta-text {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .sidebar-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-soft);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
  }
  .sidebar-cta-btn:hover { gap: 12px; }

  /* In-page TOC (지금 페이지의 섹션 목록) */
  .sidebar-toc {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
  }
  .sidebar-toc-label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--text-4);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .sidebar-toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .sidebar-toc-list a {
    display: block;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-3);
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all 0.2s;
  }
  .sidebar-toc-list a:hover {
    color: var(--green);
    border-left-color: var(--green-tint);
  }
  .sidebar-toc-list a.active {
    color: var(--green);
    border-left-color: var(--green);
    font-weight: 500;
  }

  .content { max-width: 880px; }
  .section {
    margin-bottom: 100px;
    scroll-margin-top: 100px;
  }
  .section:last-of-type { margin-bottom: 0; }
  .section-tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 600;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    color: var(--text-1);
  }
  .section-title em {
    color: var(--green);
    letter-spacing: -0.01em;
  }
  .section-desc {
    font-size: 17px;
    color: var(--text-3);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 720px;
  }

  