:root {
  --bg: #fbfaf7;
  --paper: #ffffff;
  --ink: #151515;
  --muted: #5f5f5f;
  --line: #e7e2da;
  --accent: #111111;
  --soft: #f1ede6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; }

.header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img { width: 42px; height: 42px; }

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover { color: var(--ink); }

.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 96px 22px 70px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 16px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  margin: 0 0 24px;
  letter-spacing: -0.045em;
}

.lead {
  font-size: 20px;
  color: #3f3f3f;
  max-width: 740px;
  margin: 0;
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.06);
}

.hero-card img {
  width: 78px;
  height: 78px;
  display: block;
  margin-bottom: 26px;
}

.card-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 8px;
}

.card-text {
  color: var(--muted);
  margin: 0;
}

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 22px;
}

.section-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1.1;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 24px;
}

.box h3 {
  margin: 0 0 10px;
  font-size: 17px;
}

.box p, .box li { color: var(--muted); margin-top: 0; }

.policy-layout {
  max-width: 880px;
  margin: 0 auto;
  padding: 62px 22px;
}

.policy-layout h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 14px;
}

.policy-layout h2 {
  font-size: 22px;
  margin-top: 34px;
  margin-bottom: 10px;
}

.policy-layout p, .policy-layout li { color: #444; }

.meta {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.notice {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  color: #3e3e3e;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 34px 22px;
  color: var(--muted);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

address { font-style: normal; }

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; padding-top: 64px; }
  .grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav { align-items: flex-start; flex-direction: column; }
  .nav-links { justify-content: flex-start; }
}
