/* Orange Cat Letters - one bilingual page. Colours are the store's tokens
   (brand_research/site/src/styles/store-gallery.css). No fonts, images or scripts are loaded,
   so the CSP in _headers can stay at default-src 'none'. */
:root {
  --ground: #FBF9F5;      /* warm white */
  --surface: #F4EDE1;     /* cream */
  --ink: #2E2A26;         /* charcoal */
  --muted: #756F69;
  --accent: #9C4728;      /* terracotta deep */
  --border: #DDD4C9;
}
* { box-sizing: border-box; }
html { background: var(--ground); color: var(--ink); }
body {
  margin: 0;
  padding: 2rem clamp(1rem, 4vw, 3rem) 3rem;
  font: 1.0625rem/1.6 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  max-width: 68rem;
  margin-inline: auto;
}
a { color: var(--accent); text-underline-offset: 0.15em; }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.top { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.25rem 1rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; }
.brand { margin: 0; font-weight: 700; font-size: 1.25rem; color: var(--accent); }
.from { margin: 0; color: var(--muted); }
.pair { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); gap: 2rem 3rem; margin-top: 2rem; }
section { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem clamp(1rem, 3vw, 2rem); }
h1 { font-size: 1.75rem; line-height: 1.2; margin: 0 0 0.75rem; }
h2 { font-size: 1.05rem; margin: 1.5rem 0 0.25rem; }
p { margin: 0 0 0.75rem; }
.lead { font-size: 1.125rem; }
.legal { margin-top: 2.5rem; border-top: 1px solid var(--border); padding-top: 1rem; color: var(--muted); font-size: 0.9rem; }
.legal p { margin: 0 0 0.35rem; }
