    /* ========== Hero ========== */
    .location-hero {
      background: var(--navy);
      color: #fff;
      padding: 72px 0 80px;
      text-align: center;
    }
    .loc-kicker {
      display: inline-block;
      font-size: 12px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .loc-title {
      font-family: var(--font-serif);
      font-size: clamp(30px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.25;
      letter-spacing: -0.02em;
      margin: 0 0 16px;
      color: #fff;
    }
    .loc-hero-line {
      width: 36px; height: 2px;
      background: var(--gold);
      margin: 0 auto 16px;
    }
    .loc-desc {
      font-size: 16px;
      color: rgba(255,255,255,0.72);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.8;
    }

    /* ========== Content area ========== */
    .location-wrap {
      padding: 60px 0 80px;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    /* ========== Section cards ========== */
    .loc-section {
      background: var(--bg-card);
      border-top: 1px solid var(--border-subtle);
      padding: 48px 0;
    }
    .loc-section:first-child { border-top: none; }
    .sec-header {
      margin-bottom: 28px;
      padding-bottom: 18px;
      border-bottom: 1px solid var(--border-subtle);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .sec-kicker {
      display: block;
      font-size: 12px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 6px;
    }
    .sec-title {
      font-family: var(--font-serif);
      font-size: 22px;
      font-weight: 700;
      color: var(--navy);
      margin: 0;
      letter-spacing: -0.02em;
    }
    .sec-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .btn-action {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 9px 16px;
      font-size: 13px;
      font-weight: 700;
      font-family: var(--font-sans);
      cursor: pointer;
      transition: var(--transition);
    }
    .btn-action.navy { background: var(--navy); color: #fff; border: none; }
    .btn-action.navy:hover { background: var(--navy-mid); }
    .btn-action.light { background: var(--bg-card); color: var(--navy); border: 1px solid var(--border-light); }
    .btn-action.light:hover { border-color: var(--gold); color: var(--gold-text); } /* AA: 흰 배경 위 텍스트는 gold-text */

    /* ========== Map ========== */
    .map-container {
      width: 100%;
      height: 320px;
      overflow: hidden;
      border: 1px solid var(--border-light);
      margin-bottom: 24px;
    }
    .map-container iframe { width: 100%; height: 100%; border: 0; }

    /* ========== Info block ========== */
    .info-block {
      background: var(--bg-warm);
      border: 1px solid var(--border-light);
      padding: 24px 28px;
    }
    .info-block h3 {
      font-family: var(--font-serif);
      margin: 0 0 14px;
      font-size: 17px;
      font-weight: 700;
      color: var(--navy);
    }
    .info-list { display: grid; gap: 9px; }
    .info-list li {
      display: flex;
      gap: 14px;
      align-items: baseline;
      font-size: 15px;
      color: var(--text-secondary);
      line-height: 1.7;
    }
    .info-list strong {
      color: var(--navy);
      min-width: 44px;
      flex-shrink: 0;
      font-weight: 700;
    }

    /* ========== Transport ========== */
    .trans-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .trans-item {
      display: flex;
      gap: 16px;
      padding: 20px 22px;
      border: 1px solid var(--border-light);
      background: var(--bg-warm);
      align-items: flex-start;
    }
    .trans-icon {
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: var(--navy);
      color: var(--gold-light);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      border-radius: var(--ksl-control-radius); /* 통일된 컨트롤 라운드 */
    }
    .trans-content h4 {
      margin: 0 0 10px;
      font-size: 16px;
      font-weight: 700;
      color: var(--navy);
    }
    .trans-content ul {
      margin: 0;
      padding-left: 16px;
      color: var(--text-secondary);
      font-size: 14px;
      line-height: 1.75;
    }
    .trans-content ul li { margin-bottom: 5px; }

    /* ========== Photos ========== */
    .photo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }
    .photo-item {
      border: 1px solid var(--border-light);
      overflow: hidden;
    }
    .photo-img {
      width: 100%; height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }
    .photo-item:hover .photo-img { transform: scale(1.03); }
    .photo-caption {
      padding: 10px 14px;
      font-size: 13px;
      color: var(--text-muted);
      background: var(--bg-card);
      border-top: 1px solid var(--border-subtle);
    }

    /* ========== Consult card ========== */
    .consult-card {
      background: var(--navy);
      padding: 72px 24px;
      text-align: center;
    }
    .consult-kicker {
      display: block;
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .consult-title {
      font-family: var(--font-serif);
      font-size: clamp(22px, 3vw, 32px);
      font-weight: 700;
      color: #fff;
      line-height: 1.35;
      letter-spacing: -0.02em;
      margin: 0 0 14px;
    }
    .consult-desc {
      font-size: 15px;
      color: rgba(255,255,255,0.62);
      line-height: 1.8;
      margin: 0 0 28px;
      word-break: keep-all;
    }
    .consult-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 50px;
      padding: 0 28px;
      background: var(--gold);
      color: var(--navy);
      font-size: 15px;
      font-weight: 700;
      font-family: var(--font-sans);
      transition: var(--transition);
    }
    .consult-btn:hover { background: var(--gold-light); }

    /* ========== Media queries ========== */
    @media (max-width: 992px) {
      .trans-grid { grid-template-columns: 1fr; }
      .photo-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .location-hero { padding: 56px 0 60px; }
      .location-wrap { padding: 40px 0 60px; }
      .loc-section { padding: 36px 0; }
      .photo-grid { grid-template-columns: 1fr; }
      .photo-img { height: 220px; }
    }

    /* ========== Motion 보조 (ksl-motion 훅용 — 엔진 파일은 건드리지 않습니다) ==========
       패럴랙스는 대상 요소에 inline transform 을 씁니다. 그래서 '움직이는 판'은
       반드시 '창(overflow:hidden)' 안에서 여유분을 갖고 움직여야 빈틈이 생기지 않습니다. */

    /* 지도: .map-container 가 창, iframe 이 움직이는 판 (위아래 50px 여유) */
    .map-container { position: relative; }
    .map-container iframe {
      position: absolute;
      top: -50px;
      left: 0;
      width: 100%;
      height: calc(100% + 100px);
      border: 0;
    }

    /* 사진: .photo-media 가 창(220px), .photo-img 가 움직이는 판 (위아래 30px 여유) */
    .photo-media {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .photo-media .photo-img {
      height: 280px;
      margin-top: -30px;
    }
    /* transform 은 패럴랙스가 점유하므로, 호버 확대는 독립 scale 프로퍼티로 분리합니다.
       (reduced-motion 이라 패럴랙스가 꺼져도 transform:none 덕분에 확대가 겹치지 않습니다) */
    .photo-img { transition: transform 0.4s, scale 0.4s; }
    .photo-item:hover .photo-img { transform: none; scale: 1.03; }
