:root {
  --bg: #F6F0E4;
  --card: #FFFFFF;
  --ink: #221A12;
  --muted: #6B5D4C;
  --line: #E6DCC6;
  --accent: #A85A1E;
  --accent-ink: #FFFFFF;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #14100B;
    --card: #1E1811;
    --ink: #F3ECDD;
    --muted: #B6A88C;
    --line: #34291C;
    --accent: #E8A94A;
    --accent-ink: #1A1207;
  }
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 17px;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 48px 20px 80px; }

header.hero { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
header.hero img { width: 56px; height: 56px; border-radius: 14px; display: block; box-shadow: 0 4px 16px rgba(0,0,0,.25); }
header.hero a { color: inherit; text-decoration: none; display: flex; align-items: center; gap: 16px; }
h1 { font-family: "Playfair Display", Georgia, serif; font-size: 2.3rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.15; }
h1 .sub { display: block; font-family: "Inter", sans-serif; font-size: .95rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); margin-top: 4px; }

.tagline { font-size: 1.2rem; margin: 22px 0 0; max-width: 34rem; }
.tagline strong { color: var(--accent); }

.badges { margin: 26px 0 6px; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 12px; padding: 10px 16px; font-size: .95rem; color: var(--muted); background: var(--card); }
.badge strong { color: var(--ink); }

h2 { font-family: "Playfair Display", Georgia, serif; margin: 3rem 0 .7rem; font-size: 1.5rem; font-weight: 700; letter-spacing: -.01em; }
h3 { margin: 1.6rem 0 .35rem; font-size: 1.05rem; font-weight: 700; }
p, li { color: var(--ink); }
p + p { margin-top: .8rem; }
.muted, .date { color: var(--muted); }
.date { font-size: .9rem; }
strong { font-weight: 700; }
a { color: var(--accent); text-underline-offset: 3px; text-decoration-thickness: 1px; }
ul { padding-left: 1.2rem; margin: .5rem 0; }
li + li { margin-top: .4rem; }

section.block { margin-top: 46px; padding-top: 30px; border-top: 1px solid var(--line); }
section.block > h2:first-child { margin-top: 0; }
.label { font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }

.features { list-style: none; padding: 0; display: grid; gap: 14px; margin-top: 14px; }
.features li { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.features li h3 { margin-top: 0; }
.features li p { color: var(--muted); }

.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.shots img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid var(--line); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
@media (max-width: 640px) {
  .shots { grid-template-columns: 1fr 1fr; }
  .shots li:first-child { grid-column: 1 / -1; }
}

.privacy-card { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 22px 24px; margin-top: 16px; }
.privacy-card p:last-child { margin-bottom: 0; }

.fiction-note { font-size: .92rem; color: var(--muted); font-style: italic; margin-top: 14px; }

.btn { display: inline-block; background: var(--accent); color: var(--accent-ink); padding: 12px 22px; border-radius: 12px; text-decoration: none; font-weight: 700; margin-top: 12px; }

.qa + .qa { margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }

nav.foot-nav { margin: 52px 0 6px; display: flex; flex-wrap: wrap; gap: 18px; }
footer { margin-top: 24px; font-size: .85rem; color: var(--muted); }
footer a { color: var(--muted); }
.lang { display: flex; gap: 16px; margin: 22px 0 0; font-size: .9rem; }
