:root {
  --ink: #1b1815;
  --ink-soft: #262019;
  --paper: #f2e8d5;
  --paper-bright: #faf6ee;
  --amber: #d98a3d;
  --amber-bright: #f0a955;
  --burgundy: #7a2e3a;
  --brass: #a9834f;
  --line: rgba(169, 131, 79, 0.35);
  --green: #6f9a5c;

  --font-display: "Fraunces", serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper-bright);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

img, svg { display: block; max-width: 100%; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(27, 24, 21, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.topbar__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark { display: flex; align-items: center; text-decoration: none; }
.wordmark__logo {
  display: block;
  height: 34px;
  width: auto;
  /* logo art is white-on-black; screen drops the black box into the dark bg */
  mix-blend-mode: screen;
}
@media (max-width: 560px) {
  .wordmark__logo { height: 26px; }
}

.topbar__call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  text-decoration: none;
  color: var(--paper-bright);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.topbar__call:hover { border-color: var(--amber); color: var(--amber-bright); }

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.dot--live { box-shadow: 0 0 0 3px rgba(111, 154, 92, 0.2); }
.dot--out { background: var(--brass); box-shadow: 0 0 0 3px rgba(169, 131, 79, 0.2); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 96px 24px 88px;
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 480px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(217, 138, 61, 0.28), transparent 70%),
              radial-gradient(45% 45% at 80% 10%, rgba(122, 46, 58, 0.28), transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.02;
  margin: 0 0 24px;
  color: var(--paper-bright);
  letter-spacing: -0.01em;
}
.hero__title em {
  font-style: italic;
  font-weight: 500;
  color: var(--amber-bright);
}

.hero__body {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(250, 246, 238, 0.72);
  max-width: 540px;
  margin: 0 auto 36px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
  display: inline-block;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--amber);
  color: #1b1815;
}
.btn--primary:hover { background: var(--amber-bright); }

.btn--ghost {
  border-color: var(--line);
  color: var(--paper-bright);
}
.btn--ghost:hover { border-color: var(--amber); }

/* ---------- stock section ---------- */
.stock {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}

.stock__header {
  text-align: center;
  margin-bottom: 28px;
}
.stock__header h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 32px;
  margin: 0 0 8px;
}
.stock__subhead {
  color: rgba(250, 246, 238, 0.6);
  margin: 0;
  font-size: 15px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(250, 246, 238, 0.7);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--amber); color: var(--paper-bright); }
.filter-btn[aria-selected="true"] {
  background: var(--amber);
  border-color: var(--amber);
  color: #1b1815;
}

.tag-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

/* signature element: shelf tag card */
.tag {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  padding: 22px 18px 18px;
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.55);
  border-top: 3px dashed rgba(122, 46, 58, 0.35);
}

.tag::before {
  /* die-cut hook hole, like a real shelf tag */
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--ink);
  border-radius: 50%;
  border: 3px solid var(--ink);
  box-shadow: inset 0 0 0 3px var(--paper);
}

.tag__category {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 6px;
}

.tag__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.tag__size {
  font-size: 13px;
  color: rgba(27, 24, 21, 0.55);
  margin: 0 0 14px;
}

.tag__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(27, 24, 21, 0.15);
  padding-top: 12px;
}

.tag__price {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 20px;
}
.tag__price::before { content: "$"; font-size: 13px; vertical-align: top; margin-right: 1px; }

.tag__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(27, 24, 21, 0.6);
}

.tag__note {
  margin: 10px 0 0;
  font-size: 12.5px;
  font-style: italic;
  color: var(--burgundy);
}

.tag--out { opacity: 0.6; }
.tag--featured { border-top-color: var(--amber); }
.tag--featured::after {
  content: "STAFF PICK";
  position: absolute;
  top: 14px;
  right: -6px;
  background: var(--amber);
  color: #1b1815;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  padding: 3px 8px 3px 10px;
  border-radius: 3px 0 0 3px;
}

.stock__empty, .stock__updated {
  text-align: center;
  color: rgba(250, 246, 238, 0.5);
  font-size: 13px;
  margin-top: 30px;
}
.stock__updated { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.03em; }

/* ---------- visit section ---------- */
.visit {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 64px 24px;
}

.visit__card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 32px;
  align-items: start;
}

.visit__block h3 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 10px;
}
.visit__block p {
  margin: 0 0 12px;
  line-height: 1.5;
  color: var(--paper-bright);
}
.visit__phone { text-decoration: none; font-size: 18px; font-weight: 600; }
.visit__link {
  font-size: 13px;
  text-decoration: none;
  color: var(--amber-bright);
}
.visit__link:hover { text-decoration: underline; }

.visit__divider {
  width: 1px;
  align-self: stretch;
  background: var(--line);
}

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13.5px;
  padding: 4px 0;
  color: rgba(250, 246, 238, 0.85);
}
.hours li span:first-child { color: rgba(250, 246, 238, 0.55); }

/* ---------- footer ---------- */
.footer {
  text-align: center;
  padding: 28px 24px;
  font-size: 12px;
  color: rgba(250, 246, 238, 0.4);
}

/* ---------- responsive ---------- */
@media (max-width: 640px) {
  .visit__card {
    grid-template-columns: 1fr;
  }
  .visit__divider { display: none; }
  .hero { padding: 72px 20px 64px; }
}

/* ---------- accessibility ---------- */
:focus-visible {
  outline: 2px solid var(--amber-bright);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
