/* Neutrals map onto the brand tokens; brand-tokens.css must load first. */
:root { --ink: var(--tp-charcoal); --dim: #6B6862; --line: #E4DFD3; }
* { box-sizing: border-box; }
body { margin: 0; font: 16px/1.6 -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
       color: var(--ink); background: var(--tp-warm-white); }
h1, h2 { font-family: var(--tp-font-display); }
img { max-width: 100%; display: block; }
header { padding: 28px 24px; border-bottom: 1px solid var(--line); text-align: center;
         position: relative; }
.lang-switch { position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
               font-size: 14px; letter-spacing: .04em; color: var(--dim); text-decoration: none;
               border-bottom: 1px solid var(--tp-stone); padding-bottom: 2px; }
.lang-switch:hover { color: var(--ink); border-color: var(--tp-gold); }
@media (max-width: 520px) { .lang-switch { right: 16px; font-size: 13px; } }
.site-logo { display: block; line-height: 0; }
.site-logo img { width: clamp(240px, 30vw, 420px); height: auto; margin: 0 auto; }
footer { padding: 40px 24px; color: var(--dim); font-size: 14px;
         border-top: 1px solid var(--line); margin-top: 48px; }
.footer-logo { width: 200px; height: auto; margin-bottom: 20px; }
footer p { margin: 0; }

.grid { max-width: 1100px; margin: 0 auto; padding: 40px 24px;
        display: grid; gap: 40px 32px; justify-content: center;
        grid-template-columns: repeat(auto-fit, minmax(220px, 280px)); }
.card { text-decoration: none; color: inherit; }
.card img { aspect-ratio: 2/3; object-fit: contain; background: #EDE7DA; }
.card h2 { font-size: 15px; text-transform: uppercase; letter-spacing: .05em; margin: 12px 0 4px; }
.card p { margin: 0; color: var(--dim); font-size: 14px; }

.idea { max-width: 1100px; margin: 0 auto; padding: 32px 24px;
        display: grid; gap: 48px; grid-template-columns: 1fr 1fr; align-items: start; }
@media (max-width: 800px) { .idea { grid-template-columns: 1fr; gap: 24px; } }
.shots { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.shots img { width: 100%; height: auto; background: #EDE7DA; }
.idea h1 { font-size: 28px; margin: 0 0 8px; }
.price { font-size: 20px; color: var(--dim); margin: 0 0 24px; }

form { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
label { display: block; margin-bottom: 12px; font-weight: 600; }
input[type=email] { width: 100%; padding: 12px; font-size: 16px;
                    border: 1px solid var(--tp-stone); background: #fff; }
/* Gold fails contrast as text on warm white (2.5:1), so it is the hover fill only. */
button { margin-top: 12px; padding: 12px 28px; font-size: 16px;
         border: 1px solid var(--tp-charcoal); border-radius: 999px;
         background: var(--tp-charcoal); color: var(--tp-warm-white); cursor: pointer; }
button:hover { background: var(--tp-gold); border-color: var(--tp-gold); color: var(--tp-ink); }
.hp { position: absolute; left: -9999px; }
.done { padding: 16px; background: #fff; border-left: 3px solid var(--tp-gold); }
.err { color: #b00; font-size: 14px; }
