@import url('https://fonts.googleapis.com/css2?family=Kaisei+Opti:wght@400;600&family=Zen+Kaku+Gothic+New:wght@300;400;500;700&display=swap');

:root {
  color-scheme: light;
  --bg: #f8f3ea;
  --ink: #1b1916;
  --muted: #6f6256;
  --accent: #e26a2c;
  --accent-soft: #f3b56a;
  --card: rgba(255, 255, 255, 0.78);
  --line: rgba(30, 24, 18, 0.12);
  --shadow: 0 22px 60px rgba(56, 38, 21, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: -20vmax;
  z-index: -2;
  background:
    radial-gradient(60vmax 60vmax at 10% 10%, rgba(226, 106, 44, 0.25), transparent 65%),
    radial-gradient(50vmax 50vmax at 85% 15%, rgba(243, 181, 106, 0.28), transparent 70%),
    radial-gradient(45vmax 45vmax at 50% 90%, rgba(120, 148, 122, 0.18), transparent 70%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.03) 1px, transparent 1px, transparent 3px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 3px);
  opacity: 0.28;
}

.page {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 80px) clamp(20px, 6vw, 56px) 64px;
  display: grid;
  gap: 40px;
}

.hero {
  display: grid;
  gap: 16px;
  padding: 8px 0 24px;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  font-family: "Kaisei Opti", serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0;
}

h1 {
  font-size: clamp(38px, 6vw, 76px);
}

.tagline {
  margin: 0;
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--muted);
  max-width: 520px;
}

main {
  display: grid;
  gap: 36px;
}

.section {
  display: grid;
  gap: 16px;
}

.section h2 {
  font-size: clamp(22px, 3vw, 30px);
}

.card {
  padding: 22px 24px;
  border-radius: 20px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card h3 {
  font-size: 22px;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.pill {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  background: rgba(226, 106, 44, 0.12);
  border: 1px solid rgba(226, 106, 44, 0.3);
}

a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 24, 18, 0.2);
  padding-bottom: 2px;
}

a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.footer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.footer a {
  border-bottom: none;
  color: var(--muted);
}

.footer a:hover {
  color: var(--accent);
}

.legal-header {
  display: grid;
  gap: 8px;
}

.legal-header p {
  margin: 0;
  color: var(--muted);
}

.legal-section {
  display: grid;
  gap: 12px;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
}

.legal {
  display: grid;
  gap: 18px;
}

.legal dl {
  margin: 0;
  display: grid;
  gap: 6px;
}

.legal .row {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}

.legal dt {
  font-weight: 600;
}

.legal dd {
  margin: 0;
  color: var(--muted);
}

.legal-note {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 680px) {
  .card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal .row {
    grid-template-columns: 1fr;
  }
}
