/* ============================================================
   대성화스너 — 오시는 길 페이지 고유 스타일 (원본 전체)
   ============================================================ */


  :root {
    --bg: #FFFFFF;
    --bg-soft: #F6F9F7;
    --bg-tint: #ECF5EF;
    --bg-dark: #0B1410;
    --border: #E5E9E6;
    --border-hover: #CCD5CF;
    --green: #16A34A;
    --green-bright: #22C55E;
    --green-soft: #4ADE80;
    --green-tint: #DCFCE7;
    --green-bg: #F0FDF4;
    --green-dark: #0F7A37;
    --text-1: #0B1410;
    --text-2: #3F4A42;
    --text-3: #6B7A70;
    --text-4: #9AA69E;
    --shadow-sm: 0 1px 2px rgba(11, 20, 16, 0.04);
    --shadow: 0 4px 16px rgba(11, 20, 16, 0.06);
    --shadow-lg: 0 12px 40px rgba(11, 20, 16, 0.08);
    --shadow-xl: 0 24px 80px rgba(11, 20, 16, 0.12);
    --font-sans: 'Pretendard Variable', 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, 'Apple SD Gothic Neo', sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Monaco, monospace;
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  em { font-style: normal; }
  body {
    background: var(--bg);
    color: var(--text-1);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    /* Korean typography — 자연스러운 줄바꿈 */
    word-break: keep-all;
    overflow-wrap: break-word;
  }
  @media (pointer: coarse) { body { cursor: default; } }
  ::selection { background: var(--green); color: #fff; }

  /* Headings & paragraphs — 균형잡힌 줄바꿈 (최신 브라우저) */
  h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
  p, li, dd, blockquote { text-wrap: pretty; }
  .grain {
    position: fixed; inset: 0;
    pointer-events: none; z-index: 9998;
    opacity: 0.035;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='5'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  .cursor-dot, .cursor-ring {
    position: fixed; top: 0; left: 0;
    pointer-events: none; z-index: 10000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
  }
  .cursor-dot {
    width: 6px; height: 6px;
    background: #fff;
    transition: width 0.2s, height 0.2s, background 0.2s;
  }
  .cursor-ring {
    width: 32px; height: 32px;
    border: 1.2px solid rgba(255, 255, 255, 0.55);
    transition: width 0.3s var(--ease-expo), height 0.3s var(--ease-expo), border-color 0.3s, transform 0.12s linear;
  }
  .cursor-ring.hover {
    width: 56px; height: 56px;
    border-color: var(--green-soft);
    background: rgba(74, 222, 128, 0.06);
  }
  .cursor-dot.hover {
    width: 4px; height: 4px;
    background: var(--green-soft);
  }
  @media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none; } }

  .scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 2px; background: var(--green);
    z-index: 200; width: 0%;
    transition: width 0.1s linear;
  }

  /* ============ NAV ============ */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 18px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav.scrolled { padding: 12px 48px; }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-1);
    letter-spacing: -0.01em;
    text-decoration: none;
  }
  .nav-logo svg { width: 28px; height: 28px; }
  .nav-menu { display: flex; gap: 36px; list-style: none; }
  .nav-menu a {
    color: var(--text-2);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
  }
  .nav-menu a.active { color: var(--green); font-weight: 600; }
  .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-expo);
  }
  .nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
  .nav-menu a:hover { color: var(--green); }
  .nav-right { display: flex; align-items: center; gap: 20px; }
  .lang-toggle {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-3);
    letter-spacing: 0.1em;
    cursor: none;
    transition: color 0.25s;
  }
  .lang-toggle:hover { color: var(--green); }
  .btn-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--text-1);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: none;
    transition: all 0.3s var(--ease-expo);
  }
  .btn-nav-cta:hover {
    background: var(--green);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(22, 163, 74, 0.3);
  }

  /* ============ 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-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%; }

  .content { max-width: 880px; }

  /* ============ MAP CONTAINER ============ */
  .map-section {
    margin-bottom: 64px;
  }
  .map-frame {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: var(--bg-soft);
    border: 1px solid var(--border);
  }

  /* Stylized custom map (placeholder before real Naver/Kakao embed) */
  .map-frame > svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .map-overlay {
    position: absolute;
    top: 24px; left: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 320px;
    z-index: 5;
  }
  .map-overlay-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    color: var(--green);
    letter-spacing: 0.15em;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  .map-overlay-tag .dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
  }
  .map-overlay-name {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-1);
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }
  .map-overlay-addr {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .map-overlay-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
  }
  .map-action {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: none;
  }
  .map-action-primary {
    background: var(--green);
    color: #fff;
  }
  .map-action-primary:hover { background: var(--green-bright); }
  .map-action-ghost {
    background: var(--bg-soft);
    color: var(--text-2);
    border: 1px solid var(--border);
  }
  .map-action-ghost:hover {
    border-color: var(--green);
    color: var(--green);
  }
  .map-action svg { width: 11px; height: 11px; }

  /* Map service buttons (top right) */
  .map-services {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 6px;
    z-index: 5;
  }
  .map-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-2);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: none;
    box-shadow: var(--shadow-sm);
  }
  .map-service-btn:hover {
    border-color: var(--green);
    color: var(--green);
    transform: translateY(-1px);
  }
  .map-service-btn svg { width: 12px; height: 12px; flex-shrink: 0; }

  /* ============ CONTACT CARDS ============ */
  .contact-section {
    margin-bottom: 80px;
  }
  .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, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    color: var(--text-1);
  }
  .section-desc {
    font-size: 16px;
    color: var(--text-3);
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 720px;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .contact-card {
    padding: 26px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.35s var(--ease-expo);
    position: relative;
    overflow: hidden;
  }
  .contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-bg) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s;
  }
  .contact-card:hover {
    border-color: var(--green-tint);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
  }
  .contact-card:hover::before { opacity: 1; }
  .contact-card > * { position: relative; z-index: 2; }

  .contact-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }
  .contact-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--green-bg);
    border: 1px solid var(--green-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    flex-shrink: 0;
  }
  .contact-icon svg { width: 20px; height: 20px; }
  .contact-card-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3px;
    font-weight: 600;
  }
  .contact-card-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-1);
    letter-spacing: -0.01em;
  }
  .contact-card-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-1);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .contact-card-sub {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.5;
  }
  .contact-card-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: gap 0.3s ease;
  }
  .contact-card-link:hover { gap: 8px; }
  .contact-card-link svg { width: 11px; height: 11px; }

  /* ============ TRANSPORTATION ============ */
  .trans-section {
    margin-bottom: 80px;
  }
  .trans-tabs {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 24px;
    width: fit-content;
  }
  .trans-tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-3);
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .trans-tab svg { width: 14px; height: 14px; }
  .trans-tab.active {
    background: var(--bg);
    color: var(--text-1);
    box-shadow: var(--shadow-sm);
  }
  .trans-tab:not(.active):hover { color: var(--text-2); }

  .trans-panel { display: none; }
  .trans-panel.active { display: block; animation: fadeIn 0.35s ease; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .trans-routes {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .trans-route {
    padding: 24px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    transition: all 0.3s ease;
  }
  .trans-route:hover {
    border-color: var(--green-tint);
    box-shadow: var(--shadow);
  }
  .trans-route-from {
    font-size: 13px;
    color: var(--text-3);
    font-weight: 500;
  }
  .trans-route-from strong {
    display: block;
    font-size: 18px;
    color: var(--text-1);
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
  }
  .trans-route-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .trans-route-arrow-line {
    width: 100%;
    min-width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--border), var(--green));
    border-radius: 2px;
    position: relative;
  }
  .trans-route-arrow-line::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 0; height: 0;
    border-left: 8px solid var(--green);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  .trans-route-time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    letter-spacing: 0.05em;
    font-weight: 600;
  }
  .trans-route-time strong {
    color: var(--green);
    font-size: 13px;
  }
  .trans-route-to {
    text-align: right;
    font-size: 13px;
    color: var(--text-3);
  }
  .trans-route-to strong {
    display: block;
    font-size: 16px;
    color: var(--text-1);
    font-weight: 700;
    margin-bottom: 4px;
  }

  .trans-tip {
    margin-top: 20px;
    padding: 18px 22px;
    background: var(--bg-soft);
    border-left: 3px solid var(--green);
    border-radius: 10px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .trans-tip-icon {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .trans-tip-icon svg { width: 18px; height: 18px; }
  .trans-tip-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
  }
  .trans-tip-text strong { color: var(--text-1); font-weight: 700; }

  /* ============ NEARBY LANDMARKS ============ */
  .landmarks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .landmark-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.3s ease;
  }
  .landmark-item:hover {
    border-color: var(--green-tint);
    background: var(--green-bg);
  }
  .landmark-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }
  .landmark-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-1);
    flex: 1;
  }
  .landmark-distance {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-3);
    font-weight: 500;
  }

  /* ============ CONTACT CTA ============ */
  .visit-cta {
    margin-top: 60px;
    padding: 48px;
    background: var(--bg-dark);
    border-radius: 20px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .visit-cta::before {
    content: '';
    position: absolute;
    top: -30%; left: 50%;
    transform: translateX(-50%);
    width: 80%; height: 80%;
    background: radial-gradient(ellipse at center, rgba(22, 163, 74, 0.2) 0%, transparent 60%);
    pointer-events: none;
  }
  .visit-cta-content { position: relative; z-index: 2; }
  .visit-cta h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }
  .visit-cta h3 em {
    color: var(--green-soft);
  }
  .visit-cta p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
  }
  .visit-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--ease-expo);
    cursor: none;
  }
  .cta-btn-primary {
    background: var(--green);
    color: #fff;
  }
  .cta-btn-primary:hover {
    background: var(--green-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(22, 163, 74, 0.4);
  }
  .cta-btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
  }
  .cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
  }

  /* ============ FOOTER ============ */
  footer {
    padding: 48px;
    background: #060B08;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }
  .footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 24px;
  }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .nav-menu { display: none; }
    .page-body {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 60px 28px 80px;
    }
    .sidebar {
      position: relative;
      top: 0;
      padding-bottom: 24px;
      border-bottom: 1px solid var(--border);
    }
    .sidebar-menu {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 6px;
    }
    .contact-grid { grid-template-columns: 1fr; }
    .landmarks-grid { grid-template-columns: 1fr; }
    .map-overlay { max-width: 260px; padding: 16px 18px; }
    .map-overlay-name { font-size: 15px; }
    .trans-route {
      grid-template-columns: 1fr;
      gap: 12px;
      text-align: center;
    }
    .trans-route-to { text-align: center; }
    .trans-route-arrow-line { min-width: 80px; }
  }
  @media (max-width: 640px) {
    .nav { padding: 16px 20px; }
    .page-hero { padding: 110px 20px 60px; }
    .page-body { padding: 40px 20px 60px; }
    .map-overlay {
      position: static;
      max-width: none;
      margin: 16px;
      box-shadow: none;
      background: var(--bg);
    }
    .map-services {
      position: static;
      padding: 12px 16px 0;
      flex-wrap: wrap;
    }
    .map-frame { aspect-ratio: 4/3; }
    .visit-cta { padding: 32px 24px; }
    .visit-cta h3 { font-size: 22px; }
    .footer-inner { flex-direction: column; text-align: center; }
  }
  @media (prefers-reduced-motion: reduce) {
    * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }

  /* ============================================== */
  /* 📌 공통 네비게이션 드롭다운                       */
  /* ============================================== */
  .nav-menu li { position: relative; }
  .nav-menu li > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 180px;
    background: #FFFFFF;
    border: 1px solid var(--border, #E5E9E6);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 14px 40px -8px rgba(11, 20, 16, 0.18), 0 4px 12px -2px rgba(11, 20, 16, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s var(--ease-expo, cubic-bezier(0.22, 1, 0.36, 1)), transform 0.22s var(--ease-expo, cubic-bezier(0.22, 1, 0.36, 1)), visibility 0.22s;
    list-style: none;
    z-index: 1000;
    margin: 0;
  }
  .nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
  }
  .nav-menu li.has-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-dropdown li { width: 100%; }
  .nav-dropdown a {
    display: block;
    padding: 10px 14px;
    color: var(--text-1, #0B1410) !important;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.18s, color 0.18s;
  }
  .nav-dropdown a::after { display: none !important; }
  .nav-dropdown a:hover {
    background: var(--green-bg, #F0FDF4);
    color: var(--green-dark, #0F7A37) !important;
  }
  @media (max-width: 768px) {
    .nav-dropdown { display: none; }
  }
