:root { color-scheme: light; --ink: #28231f; --muted: #6d655f; --paper: #fbf8f3; --accent: #8a6548; --line: #ded5ca; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Noto Sans JP", system-ui, sans-serif; line-height: 1.75; }
a { color: inherit; }
.site-header, main, footer { width: min(70rem, calc(100% - 2rem)); margin-inline: auto; }
.site-header { padding: 1.25rem 0; }
.brand { font-family: Georgia, serif; font-size: 1.4rem; letter-spacing: .18em; text-decoration: none; }
.hero { max-width: 48rem; padding: 5rem 0 3rem; }
.eyebrow { color: var(--accent); font-size: .75rem; font-weight: 700; letter-spacing: .2em; }
h1 { margin: .2rem 0 1rem; font-family: Georgia, "Yu Mincho", serif; font-size: clamp(2.4rem, 7vw, 5rem); line-height: 1.1; }
h2 { font-family: Georgia, "Yu Mincho", serif; font-size: 1.8rem; }
.reviews-section, .submission { padding: 2.5rem 0 4rem; border-top: 1px solid var(--line); }
.review-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr)); gap: 1rem; }
.review-card, .empty-state { padding: 1.5rem; border: 1px solid var(--line); border-radius: .35rem; background: #fff; }
.stars { color: #a86f18; letter-spacing: .12em; }
.period, .attribution { color: var(--muted); font-size: .9rem; }
.verified { display: inline-block; padding: .15rem .55rem; color: #315c43; background: #e6f2e9; border-radius: 99px; font-size: .8rem; font-weight: 700; }
form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; max-width: 48rem; }
label { display: grid; gap: .35rem; font-weight: 600; }
label:has(textarea), form button, #form-result { grid-column: 1 / -1; }
input, select, textarea, button { width: 100%; min-height: 44px; padding: .8rem; border: 1px solid var(--line); border-radius: .25rem; background: #fff; color: var(--ink); font: inherit; }
textarea { resize: vertical; }
button { color: #fff; background: var(--ink); border-color: var(--ink); font-weight: 700; cursor: pointer; }
button:disabled { cursor: wait; opacity: .55; }
input:focus, select:focus, textarea:focus, button:focus { outline: 3px solid #d8bda8; outline-offset: 2px; }
footer { padding: 2rem 0 4rem; border-top: 1px solid var(--line); }
[hidden] { display: none !important; }
@media (max-width: 40rem) { .hero { padding-top: 3rem; } form { grid-template-columns: 1fr; } label, label:has(textarea), form button, #form-result { grid-column: 1; } }
