@import url("https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Libre+Franklin:wght@400;500;600;700;800&family=Noto+Sans+JP:wght@400;500;700;800&family=Noto+Sans+KR:wght@400;500;700;800&family=Noto+Serif+JP:wght@500;700&family=Noto+Serif+KR:wght@500;700&display=swap");

:root {
  --color-ink: #111827;
  --color-muted: #5c6470;
  --color-navy: #0a2342;
  --color-navy-soft: #163a63;
  --color-red: #b21f2d;
  --color-red-dark: #8f1420;
  --color-blue: #155ba6;
  --color-gold: #c9972b;
  --color-sea: #0b7a75;
  --color-line: #d9dee7;
  --color-paper: #ffffff;
  --color-wash: #f5f7fa;
  --color-cream: #fbfaf7;
  --shadow-soft: 0 18px 45px rgba(10, 35, 66, 0.14);
  --container: 1180px;
  --radius: 8px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: "Libre Franklin", "Noto Sans JP", "Noto Sans KR", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body[data-language="ja"] {
  font-family: "Noto Sans JP", "Libre Franklin", Arial, sans-serif;
}

body[data-language="ko"] {
  font-family: "Noto Sans KR", "Libre Franklin", Arial, sans-serif;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.site-container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section-band {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--color-red);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

body[data-language="ja"] h1,
body[data-language="ja"] h2 {
  font-family: "Noto Serif JP", "Instrument Serif", Georgia, serif;
}

body[data-language="ko"] h1,
body[data-language="ko"] h2 {
  font-family: "Noto Serif KR", "Instrument Serif", Georgia, serif;
}

h1 {
  margin-bottom: 24px;
  color: var(--color-navy);
  font-size: 4.35rem;
}

h2 {
  margin-bottom: 18px;
  color: var(--color-navy);
  font-size: 3.1rem;
}

h3 {
  margin-bottom: 10px;
  color: var(--color-navy);
  font-size: 1.1rem;
  line-height: 1.25;
}

p {
  margin-bottom: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--color-red);
  color: #ffffff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-red-dark);
}

.button-secondary {
  border-color: var(--color-navy);
  background: #ffffff;
  color: var(--color-navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--color-navy);
  color: #ffffff;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 12px;
  background: var(--color-navy);
  color: #ffffff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.placeholder-page {
  min-height: 58vh;
  padding: 92px 0;
  background: var(--color-wash);
}

.placeholder-page h1 {
  max-width: 760px;
}

.placeholder-page p:not(.eyebrow) {
  max-width: 620px;
  color: var(--color-muted);
}

@media (max-width: 840px) {
  .site-container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 2.2rem;
    line-height: 1.04;
  }
}
