:root {
  --bg: #f6f1ea;
  --ink: #1d1a16;
  --muted: #6b6359;
  --accent: #f05a2a;
  --accent-deep: #d84b22;
  --card: rgba(255, 255, 255, 0.86);
  --border: rgba(29, 26, 22, 0.12);
  --shadow: 0 20px 50px rgba(29, 26, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Noto Sans", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff3e6, transparent 45%),
    radial-gradient(circle at 80% 0, #e6f3ff, transparent 40%),
    var(--bg);
}

h1,
h2 {
  font-family: "Fraunces", serif;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

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

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

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw;
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(246, 241, 234, 0.88);
  border-bottom: 1px solid rgba(29, 26, 22, 0.06);
  z-index: 10;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.brand-title {
  font-size: 20px;
  font-weight: 700;
}

.lang-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.lang-toggle:hover {
  border-color: rgba(29, 26, 22, 0.2);
  transform: translateY(-1px);
}

main {
  padding: 24px 6vw 72px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
  padding: 48px 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--accent);
  font-weight: 600;
}

.hero-content h1 {
  font-size: clamp(34px, 4vw, 56px);
}

.hero-content p {
  font-size: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(240, 90, 42, 0.25);
}

.btn.primary:hover {
  background: var(--accent-deep);
}

.hero-highlights {
  display: flex;
  justify-content: center;
}

.highlights-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  width: min(420px, 100%);
}

.highlights-card h2 {
  font-size: 24px;
}

.highlights-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.highlights-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 16px;
}

.highlights-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 6vw 32px;
  border-top: 1px solid rgba(29, 26, 22, 0.08);
  color: var(--muted);
  font-size: 14px;
}

.site-footer a {
  color: var(--ink);
  font-weight: 600;
}

.policy {
  max-width: 860px;
  margin: 32px auto;
  padding: 32px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.policy-date {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.policy-content h3 {
  font-family: "Fraunces", serif;
  margin: 24px 0 12px;
}

.policy-content p {
  line-height: 1.6;
  margin-bottom: 12px;
}

.policy-action {
  margin-top: 24px;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 860px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 32px 0 12px;
  }
}

@media (max-width: 640px) {
  .brand-title {
    font-size: 18px;
  }

  .logo {
    width: 42px;
    height: 42px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .highlights-card {
    padding: 22px;
  }
}
