:root {
  color-scheme: light;
  --bg: #fff9f4;
  --surface: #ffffff;
  --soft: #f8ecee;
  --rose: #b95e70;
  --rose-dark: #93475a;
  --text: #2d2526;
  --muted: #756a6b;
  --border: #eedfe1;
  --max: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: var(--rose-dark); }
.shell { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,249,244,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
nav { min-height: 68px; display: flex; align-items: center; gap: 22px; }
.brand { margin-right: auto; font-size: 1.25rem; font-weight: 750; letter-spacing: -.02em; text-decoration: none; color: var(--text); }
.navlink { text-decoration: none; color: var(--muted); font-size: .95rem; }
.hero { padding: 96px 0 72px; text-align: center; }
.mark {
  width: 82px; height: 82px; margin: 0 auto 24px;
  display: grid; place-items: center; border-radius: 28px;
  background: var(--soft); color: var(--rose); font-size: 36px;
  box-shadow: 0 20px 55px rgba(95,54,63,.10);
}
h1,h2,h3 { line-height: 1.15; letter-spacing: -.025em; }
h1 { font-size: clamp(2.5rem, 7vw, 5rem); margin: 0 0 18px; }
.hero p { max-width: 680px; margin: 0 auto; color: var(--muted); font-size: 1.12rem; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 18px 0 72px; }
.card, .policy {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 24px; padding: 26px;
  box-shadow: 0 14px 42px rgba(95,54,63,.05);
}
.card h3 { margin-top: 0; }
.card p, .muted { color: var(--muted); }
.page { padding: 54px 0 80px; }
.page h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.policy { margin-top: 28px; }
.policy h2 { margin-top: 2rem; }
.policy h2:first-child { margin-top: 0; }
.ar { direction: rtl; text-align: right; border-top: 1px solid var(--border); margin-top: 34px; padding-top: 28px; }
.notice { background: var(--soft); border: 1px solid var(--border); border-radius: 18px; padding: 16px 18px; }
footer { border-top: 1px solid var(--border); padding: 28px 0 44px; color: var(--muted); font-size: .9rem; }
footer .shell { display: flex; gap: 18px; flex-wrap: wrap; }
footer span { margin-right: auto; }
@media (max-width: 760px) {
  nav { gap: 12px; }
  .navlink { font-size: .86rem; }
  .hero { padding-top: 64px; }
  .grid { grid-template-columns: 1fr; }
}
