/* BREW - coffee roaster / specialty cafe starter. Espresso & kraft browns,
   burnt-orange brand, caramel accent. Space Grotesk display / Inter body.
   Tokens feed the CMS blocks. */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --t-bg: #efe3d2;
  --t-bg-alt: #e4d4bd;
  --t-fg: #2a1c12;
  --t-muted: #7a5f48;
  --t-brand: #c2632b;
  --t-brand-fg: #fff6ec;
  --t-accent: #d9a441;
  --t-dark-bg: #1f140c;
  --t-dark-fg: #f3e7d6;
  --t-border: #d8c4a8;
  --t-radius: 14px;
  --t-font-display: "Space Grotesk", system-ui, sans-serif;
  --t-font-body: "Inter", system-ui, sans-serif;
  --t-maxw: 1140px;
  --t-shadow: 0 20px 52px -24px rgba(42, 28, 18, .55);
  --t-display-weight: 700;
  --t-display-tracking: -0.02em;
}

* { box-sizing: border-box; }
body {
  margin: 0; font-family: var(--t-font-body); color: var(--t-fg);
  background:
    radial-gradient(820px 460px at 88% -8%, rgba(194, 99, 43, .18), transparent 60%),
    radial-gradient(680px 420px at 4% 2%, rgba(217, 164, 65, .14), transparent 55%),
    var(--t-bg);
  -webkit-font-smoothing: antialiased;
}

/* header */
.site-header {
  position: sticky; top: 0; z-index: 40; background: rgba(239, 227, 210, .84);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--t-border);
}
.site-header .bar {
  max-width: var(--t-maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 26px;
}
.logo {
  font-family: var(--t-font-display); font-weight: 700; font-size: 22px;
  color: var(--t-fg); text-decoration: none; letter-spacing: -.02em;
}
.logo .ember { color: var(--t-brand); }
.site-nav { display: flex; gap: 24px; margin-left: auto; }
.site-nav a {
  color: var(--t-muted); text-decoration: none; font-weight: 500; font-size: 15px;
}
.site-nav a:hover { color: var(--t-fg); }
.header-cta {
  background: linear-gradient(135deg, var(--t-brand), #a84f1f);
  color: var(--t-brand-fg); font-family: var(--t-font-display); font-weight: 600; font-size: 14.5px;
  padding: 10px 20px; border-radius: 11px; text-decoration: none;
  box-shadow: 0 10px 26px -10px var(--t-brand);
}
.header-cta:hover { filter: brightness(1.06); }
@media (max-width: 760px) { .site-nav { display: none; } }

/* footer */
.site-footer { background: var(--t-dark-bg); color: var(--t-dark-fg); border-top: 1px solid var(--t-border); }
.site-footer .inner {
  max-width: var(--t-maxw); margin: 0 auto; padding: 46px 24px;
  display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between;
}
.site-footer p { margin: 0; color: #b79877; font-size: 14px; }
.site-footer .foot-logo {
  font-family: var(--t-font-display); font-weight: 700; font-size: 19px; color: var(--t-dark-fg);
}
.site-footer .foot-logo .ember { color: var(--t-accent); }
