:root {
  --cream: #f7f3ec;
  --paper: #fffdfa;
  --ink: #1a1814;
  --soft-ink: #5b554c;
  --muted: #8a8275;
  --rust: #9a3a1f;
  --line: #e7dfd3;
  --shadow: 0 18px 50px rgba(55, 42, 27, .08);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
}

html.dark {
  --cream: #171512;
  --paper: #24201b;
  --ink: #f7f3ec;
  --soft-ink: #d6cdbf;
  --muted: #a79b8c;
  --rust: #c85b39;
  --line: #40372e;
  --shadow: 0 18px 50px rgba(0, 0, 0, .28);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--cream); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--rust); }
.shell { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.site-header { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; }
.wordmark { display: inline-flex; align-items: baseline; font-family: Fraunces, Georgia, serif; font-size: 2rem; font-weight: 600; line-height: 1; letter-spacing: -.035em; color: var(--ink); }
.wordmark .brand-dot, .brand-mark .brand-dot { color: var(--rust); margin-left: .08em; }
.brand-mark { display: inline-flex; align-items: baseline; font-family: Fraunces, Georgia, serif; font-size: 4rem; font-weight: 600; line-height: 1; letter-spacing: -.035em; color: var(--ink); }
.brand-mark-image { position: relative; z-index: 1; width: 76px; height: 76px; border-radius: 22px; object-fit: cover; box-shadow: 0 12px 24px rgba(0, 0, 0, .16); }
.nav { display: flex; gap: 28px; align-items: center; font-size: .9rem; color: var(--soft-ink); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 8px 13px; color: var(--ink); }
.header-tools { display: flex; align-items: center; gap: 8px; }
.language-select, .theme-toggle { border: 1px solid var(--line); background: var(--paper); border-radius: 999px; padding: 8px 11px; color: var(--ink); font: inherit; font-size: .78rem; font-weight: 700; }
.theme-toggle { cursor: pointer; min-width: 36px; }
.eyebrow { margin: 0 0 16px; color: var(--rust); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; font-weight: 700; }
h1, h2, h3 { font-family: Fraunces, Georgia, serif; line-height: 1.04; letter-spacing: -.04em; margin: 0; font-weight: 600; }
h1 { max-width: 700px; font-size: clamp(3.2rem, 8vw, 6.6rem); }
h2 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h3 { font-size: 1.55rem; }
p { color: var(--soft-ink); }
.hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; padding: 74px 0 100px; }
.hero-copy > p { max-width: 560px; font-size: 1.12rem; margin: 28px 0; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 21px; border-radius: 999px; font-size: .94rem; font-weight: 700; border: 1px solid var(--ink); }
.button.primary { color: var(--paper); background: var(--ink); }
.button.secondary { background: transparent; }
.hero-art { min-height: 430px; border-radius: 34px; position: relative; overflow: hidden; background: var(--paper); box-shadow: var(--shadow); padding: 28px; }
.hero-art::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; right: -60px; top: -70px; background: #ead9c5; }
.hero-art::after { content: ""; position: absolute; width: 180px; height: 180px; border-radius: 50%; left: -50px; bottom: -75px; background: #f0c2a7; }
.mark { position: relative; z-index: 1; width: 66px; height: 66px; object-fit: contain; }
.art-card { position: absolute; z-index: 1; left: 28px; right: 28px; bottom: 28px; background: rgba(255,253,250,.91); border: 1px solid rgba(26,24,20,.08); border-radius: 24px; padding: 26px; }
.art-card strong { font-family: Fraunces, Georgia, serif; font-size: 2rem; display: block; margin-bottom: 4px; }
.art-card span { color: var(--muted); font-size: .88rem; }
.section { padding: 92px 0; }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.section-head p { max-width: 430px; margin: 0; }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.card { background: var(--paper); border: 1px solid var(--line); border-radius: 24px; padding: 25px; min-height: 220px; }
.card .number { color: var(--rust); font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.card h3 { margin-top: 38px; }
.card p { font-size: .94rem; }
.notice { background: var(--ink); color: var(--paper); border-radius: 28px; padding: 34px 38px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.notice p { color: #ded6ca; margin: 8px 0 0; max-width: 660px; }
.notice .button { border-color: #ded6ca; color: var(--paper); flex-shrink: 0; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.split p { max-width: 660px; }
.list { display: grid; gap: 14px; }
.list-row { display: grid; grid-template-columns: 34px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.list-row b { color: var(--rust); }
.list-row p { margin: 4px 0 0; font-size: .95rem; }
.legal { max-width: 800px; padding: 62px 0 100px; }
.legal h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); margin-bottom: 22px; }
.legal h2 { font-size: 2rem; margin: 44px 0 12px; }
.legal h3 { font-size: 1.25rem; margin: 24px 0 8px; }
.legal p, .legal li { color: var(--soft-ink); }
.legal ul { padding-left: 22px; }
.meta { color: var(--muted); font-size: .9rem; }
.support-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 34px; }
.support-card { background: var(--paper); border: 1px solid var(--line); padding: 24px; border-radius: 22px; }
.support-card h3 { margin-bottom: 7px; }
.support-card a { color: var(--rust); font-weight: 700; }
form { display: grid; gap: 12px; margin-top: 28px; max-width: 590px; }
label { color: var(--soft-ink); font-size: .88rem; font-weight: 700; }
input, textarea { width: 100%; border: 1px solid var(--line); background: var(--paper); padding: 13px 14px; border-radius: 12px; font: inherit; color: var(--ink); }
textarea { min-height: 130px; resize: vertical; }
.site-footer { border-top: 1px solid var(--line); padding: 28px 0 40px; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .84rem; }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
html[dir="rtl"] .legal ul { padding-left: 0; padding-right: 22px; }
@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 620px); }
  .site-header { padding: 17px 0; }
  .site-header .nav { width: 100%; margin-top: 14px; gap: 16px; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .header-tools { margin-left: auto; margin-right: 10px; }
  .nav { display: none; position: absolute; left: 14px; right: 14px; top: 70px; background: var(--paper); border: 1px solid var(--line); border-radius: 17px; padding: 15px; flex-direction: column; align-items: stretch; gap: 0; z-index: 10; box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 10px 6px; }
  .hero { grid-template-columns: 1fr; padding: 48px 0 72px; gap: 34px; }
  .hero-art { min-height: 320px; }
  .section { padding: 68px 0; }
  .section-head, .split { display: block; }
  .section-head p { margin-top: 16px; }
  .grid, .support-grid { grid-template-columns: 1fr 1fr; }
  .notice { display: block; padding: 28px; }
  .notice .button { margin-top: 22px; }
  .site-footer { display: block; }
  .footer-links { margin-top: 16px; }
}
@media (max-width: 520px) { .grid, .support-grid { grid-template-columns: 1fr; } h1 { font-size: 3.2rem; } }
