/* Whoof web — shared shell for every page: tokens, nav, pills, footer.
   Token values mirror the Whoof Design System (tokens/*.css). */

@font-face {
  font-family: "Concert One";
  src: url("/fonts/ConcertOne-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter-VariableFont.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --whoof-amber: #fcab4c;
  --whoof-cream: #f6f6f4;
  --whoof-ink: #171615;
  --whoof-teal: #1a6884;
  --surface-habitat: #fae5b0;
  --neutral-600: #63635f;
  --border-subtle: #dededb;
  --font-display: "Concert One", "Trebuchet MS", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --radius-pill: 100px;
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --gutter: clamp(16px, 4vw, 40px);
}

html, body { margin: 0; }
body {
  background: #fff;
  font-family: var(--font-body);
  color: var(--whoof-ink);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
h1, p { margin: 0; }
a { color: var(--whoof-ink); text-decoration: none; }
a:hover { color: var(--whoof-teal); }
.ic { display: block; flex: none; fill: currentColor; }

.brand { font-family: var(--font-display); font-size: 22px; letter-spacing: 3px; }
.brand.small { font-size: 18px; letter-spacing: 2px; }
a.brand:hover { color: var(--whoof-ink); }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--neutral-600);
}

.nav {
  display: flex;
  align-items: center;
  padding: 0 var(--gutter);
  height: 68px;
  border-bottom: 1px solid var(--border-subtle);
}
.navcta {
  margin-left: auto;
  background: var(--whoof-amber);
  border-radius: var(--radius-pill);
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
}

.store, .storealt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: var(--radius-pill);
  padding: 13px 22px;
  font-size: 14.5px;
  font-weight: 600;
}
.store { background: var(--whoof-amber); }
.storealt { background: var(--whoof-cream); }
/* Pills hold ink on hover; the global teal link hover must not reach them. */
.navcta:hover, .store:hover, .storealt:hover { color: var(--whoof-ink); opacity: .9; }

.foot { background: var(--whoof-ink); color: #fff; }
.footbar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px var(--gutter);
}
.footbar .brand { color: #fff; }
.footlinks { margin-left: auto; display: flex; flex-wrap: wrap; gap: 18px; }
.footlinks a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .72);
}
.footlinks a:hover { color: #fff; }
.footfine { font-size: 12.5px; font-weight: 300; color: rgba(255, 255, 255, .5); }

@media (max-width: 860px) {
  .footlinks { margin-left: 0; }
}

/* The radar loops are decorative. */
@media (prefers-reduced-motion: reduce) {
  .radar, .mark .pulse { animation: none; opacity: 0; }
}
