/* Analog Deck Works — shared tokens & components */
:root {
  --bg: #FCFBF8;
  --surface: #F1EFEA;
  --text: #23262B;
  --muted: #6E7378;
  --accent: #C96F4A;
  --accent-strong: #D97F58;
  --hairline: rgba(35, 38, 43, 0.16);
  --font-display: 'Cabinet Grotesk', 'Inter Tight', system-ui, sans-serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

html { background: var(--bg); }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--accent); color: #1B1D21; }

h1, h2, h3, .font-display { font-family: var(--font-display); letter-spacing: -0.02em; }
.mono { font-family: var(--font-mono); }

/* hairline seam — recurring motif like a tape counter scale */
.seam {
  border: 0;
  border-top: 1px solid var(--hairline);
  position: relative;
  margin: 0;
}
.seam::after {
  content: "";
  position: absolute;
  left: 0; top: -3px;
  width: 64px; height: 7px;
  background: linear-gradient(to right, var(--accent) 0 1px, transparent 1px 8px);
  background-size: 8px 7px;
  opacity: 0.9;
}

/* CTA garments — one per treatment, page-wide ration */
.btn-pill {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: #1B1D21;
  font-weight: 600; border-radius: 999px;
  padding: 0.85rem 1.6rem;
  transition: background .2s ease, transform .2s ease;
}
.btn-pill:hover { background: var(--accent-strong); }
.btn-pill svg { transition: transform .2s ease; }
.btn-pill:hover svg { transform: translateX(3px); }

.btn-quiet {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--hairline);
  background-image: linear-gradient(var(--accent), var(--accent));
  background-repeat: no-repeat;
  background-size: 24% 2px;
  background-position: 0 100%;
  transition: background-size .25s ease;
}
.btn-quiet:hover { background-size: 100% 2px; }

.btn-plate {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem;
  border: 1px solid var(--hairline);
  background: var(--surface);
  color: var(--accent);
  padding: 1rem 1.5rem;
  transition: border-color .2s ease, background .2s ease;
}
.btn-plate:hover { border-color: var(--accent); background: #E7E4DC; }

.btn-stamp {
  display: inline-block;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  padding: 0.8rem 1.4rem;
  border-radius: 4px;
  transform: rotate(-1deg);
  transition: background .2s ease, color .2s ease;
}
.btn-stamp:hover { background: var(--accent); color: #1B1D21; }

/* eyebrow — max 1 per page above display headline */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.card:hover { border-color: rgba(201, 111, 74, 0.5); }

.tag-sold {
  background: var(--accent); color: #1B1D21;
  font-family: var(--font-mono);
  font-size: 0.7rem; letter-spacing: 0.15em;
  padding: 0.3rem 0.6rem;
}

.num-outline {
  font-family: var(--font-mono);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--muted);
}

/* header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(35, 38, 43, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.site-header .wordmark { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; }
.nav-link { color: var(--muted); transition: color .2s ease; }
.nav-link:hover, .nav-link[aria-current="page"] { color: var(--text); }

/* footer */
.site-footer { border-top: 1px solid var(--hairline); background: #1F2226; }
.site-footer a { color: var(--muted); transition: color .2s ease; }
.site-footer a:hover { color: var(--text); }

/* WhatsApp floating button */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60;
  display: flex; align-items: center; justify-content: center;
  width: 3.25rem; height: 3.25rem; border-radius: 999px;
  background: var(--accent); color: #1B1D21;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform .2s ease, background .2s ease;
}
.wa-float:hover { transform: translateY(-2px); background: var(--accent-strong); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}
