:root { --ink: #17211b; --muted: #68736c; --cream: #f6f3eb; --paper: #fffdf8; --green: #225c43; --line: #dcded5; }
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: "DM Sans", Arial, sans-serif; }
.info-header { height: 68px; padding: 0 max(22px, calc((100vw - 920px) / 2)); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); background: var(--paper); }
.brand { color: var(--ink); font-size: 22px; font-weight: 700; text-decoration: none; letter-spacing: -1px; }
.brand span, a { color: var(--green); }
.back { font-size: 13px; font-weight: 600; text-decoration: none; }
main { width: min(920px, calc(100% - 36px)); margin: 48px auto 80px; display: grid; grid-template-columns: 220px 1fr; gap: 54px; }
.intro p { color: var(--green); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
h1 { margin: 8px 0; font-family: Georgia, serif; font-size: clamp(34px, 6vw, 54px); line-height: 1; }
h2 { margin: 34px 0 10px; font-size: 19px; }
.content { max-width: 620px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.content > :first-child { margin-top: 0; }
.content strong { color: var(--ink); }
.content li + li { margin-top: 8px; }
.notice { padding: 16px 18px; border-left: 3px solid var(--green); background: var(--paper); }
form { display: grid; gap: 16px; }
label { display: grid; gap: 6px; color: var(--ink); font-size: 12px; font-weight: 600; }
input, textarea { width: 100%; padding: 12px; border: 1px solid var(--line); border-radius: 7px; background: var(--paper); font: inherit; }
textarea { resize: vertical; }
.website-field { position: absolute; left: -10000px; }
button { width: max-content; padding: 11px 18px; border: 0; border-radius: 7px; color: white; background: var(--green); cursor: pointer; font: 600 13px inherit; }
button:disabled { opacity: .6; cursor: wait; }
#contact-message { min-height: 22px; margin: 0; font-size: 13px; }
@media (max-width: 700px) { main { margin-top: 30px; grid-template-columns: 1fr; gap: 22px; } .info-header { padding: 0 18px; } }
