<?xml version="1.0" encoding="UTF-8"?>
<!--
  9개 URL = 페이지 3장 × 언어 3개.

  ⚠️ 언어는 경로가 아니라 ?lang= 쿼리다. PRODUCT.md 는 /ja/works/ 형태를
     요구하지만, 그 요구의 이유("프리페치 캐시 오염", "언어별 색인")를 지금
     구조에 대입한 판단은 i18n.js 의 updateCanonical 주석에 적어 뒀다.
     요약: 캐시 오염은 이 구조에서 구조적으로 불가능하고, 색인은 아래 hreflang
     묶음 + 자기참조 canonical 로 달성한다. 경로 방식은 Next.js 이식 때 한다.

  ⚠️ 각 URL 이 자기 자신을 포함해 4개 alternate 를 갖는 것이 정상이다
     (en·ja·ko·x-default). 구글은 한 묶음 안의 모든 URL 이 서로를 가리킬 때만
     그 묶음을 신뢰한다 — 한 방향으로만 걸면 무시된다.

  ⚠️ 페이지를 추가하면 여기도 3줄이 아니라 **한 블록**(URL 1개 + alternate 4개)
     이 언어마다 필요하다. 빌드 단계가 없어 수기 관리다.
-->
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
        xmlns:xhtml="http://www.w3.org/1999/xhtml">

  <!-- ── home ─────────────────────────────────────────────────────── -->
  <url>
    <loc>https://koyobeats.com/?lang=en</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/"/>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://koyobeats.com/?lang=ja</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/"/>
    <priority>1.0</priority>
  </url>
  <url>
    <loc>https://koyobeats.com/?lang=ko</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/"/>
    <priority>1.0</priority>
  </url>

  <!-- ── works ────────────────────────────────────────────────────── -->
  <url>
    <loc>https://koyobeats.com/works.html?lang=en</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/works.html?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/works.html?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/works.html?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/works.html"/>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://koyobeats.com/works.html?lang=ja</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/works.html?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/works.html?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/works.html?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/works.html"/>
    <priority>0.9</priority>
  </url>
  <url>
    <loc>https://koyobeats.com/works.html?lang=ko</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/works.html?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/works.html?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/works.html?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/works.html"/>
    <priority>0.9</priority>
  </url>

  <!-- ── contact ──────────────────────────────────────────────────── -->
  <url>
    <loc>https://koyobeats.com/contact.html?lang=en</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/contact.html?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/contact.html?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/contact.html?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/contact.html"/>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://koyobeats.com/contact.html?lang=ja</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/contact.html?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/contact.html?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/contact.html?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/contact.html"/>
    <priority>0.8</priority>
  </url>
  <url>
    <loc>https://koyobeats.com/contact.html?lang=ko</loc>
    <xhtml:link rel="alternate" hreflang="en" href="https://koyobeats.com/contact.html?lang=en"/>
    <xhtml:link rel="alternate" hreflang="ja" href="https://koyobeats.com/contact.html?lang=ja"/>
    <xhtml:link rel="alternate" hreflang="ko" href="https://koyobeats.com/contact.html?lang=ko"/>
    <xhtml:link rel="alternate" hreflang="x-default" href="https://koyobeats.com/contact.html"/>
    <priority>0.8</priority>
  </url>

</urlset>
