/* Fence Ops chrome on the public face. Colours from tokens.json. Do not hand-hex. */
:root {
  --fence-surface-0: #0F0F0F;
  --fence-surface-1: #1A1A1A;
  --fence-surface-2: #242424;
  --fence-border: #2E2E2E;
  --fence-text-primary: #E8E8E8;
  --fence-text-secondary: #A5A5A5;
  --fence-text-muted: #6E6E6E;
  --fence-positive: #D99A1F;
  --fence-negative: #C4433D;
  --fence-font-heading: "Barlow Condensed", sans-serif;
  --fence-font-body: "Barlow", sans-serif;
  --bg0: var(--fence-surface-0);
  --bg1: var(--fence-surface-1);
  --fg: var(--fence-text-primary);
  --fg2: var(--fence-text-secondary);
  --muted: var(--fence-text-muted);
  --border: var(--fence-border);
  --pos: var(--fence-positive);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  min-height: 100%;
  background: var(--bg0);
  color: var(--fg);
  font-family: var(--fence-font-body);
  font-size: 14px;
  line-height: 1.35;
}

a { color: var(--pos); text-decoration: none; }
a:hover { color: var(--fg); }

.shell {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 18px 48px;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--fg);
  text-decoration: none;
}

.duffel {
  color: var(--muted);
  display: inline-flex;
  width: 52px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.brand .name {
  font-family: var(--fence-font-heading);
  font-weight: 700;
  font-size: 1.25em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.topbar .log {
  margin-left: auto;
  background: var(--bg1);
  border: 1px solid var(--border);
  color: var(--fg2);
  font-family: var(--fence-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 1px 9px;
  font-size: 0.85em;
}

.topbar .log:hover,
.topbar .log[aria-current="page"] {
  border-color: var(--pos);
  color: var(--pos);
}

h1, h2 {
  font-family: var(--fence-font-heading);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.product {
  padding: 28px 0 0;
}

.product h1 {
  font-size: clamp(2.4rem, 7vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.product .line {
  margin-top: 4px;
  color: var(--fg2);
  font-size: 1rem;
}

.shots {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 28rem);
  gap: 8px;
}

@media (max-width: 800px) {
  .shots { grid-template-columns: 1fr; }
}

.shots a,
.shots figure {
  display: block;
  margin: 0;
  background: var(--bg1);
  border: 1px solid var(--border);
}

.shots img {
  display: block;
  width: 100%;
  height: auto;
}

.shots video {
  display: block;
  width: 100%;
  height: auto;
}

.entries { margin-top: 18px; }

.entry {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

@media (max-width: 560px) {
  .entry { grid-template-columns: 1fr; gap: 4px; }
}

.entry time {
  font-family: var(--fence-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  font-size: 0.85em;
  padding-top: 3px;
}

.entry h2 {
  font-size: 1.05em;
  margin-bottom: 4px;
}

.entry p { color: var(--fg2); max-width: 40rem; }
.entry .loss { color: var(--fence-negative); }
