/* STILL GOOD archives, naar het typografische model van een curated vintage shop */

:root {
  --ink: #0d0d0d;
  --paper: #ffffff;
  --paper-warm: #f4f1ec;
  --accent: #3e6b34;
  --cacao: #241a12;
  --accent-bright: #8fd08f;
  --hairline: rgba(13, 13, 13, 0.15);
  --font-head: "Syne", sans-serif;
  --font-body: "Archivo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

/* Announce bar */
.announce {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
}

.announce-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}

.announce-track span {
  display: inline-block;
  padding: 0.5rem 3.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled { box-shadow: 0 2px 14px rgba(13, 13, 13, 0.08); }

.site-header nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.brand em {
  font-style: normal;
  font-weight: 500;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 1.4rem;
  margin-left: 1rem;
}

.nav-links a,
.nav-city {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-city:hover,
.nav-city:focus-visible { border-bottom-color: var(--ink); }

.nav-city { margin-left: auto; }

@media (min-width: 760px) {
  .nav-links { display: flex; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; }

.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { background: var(--paper-warm); transform: translateY(-1px); }

.btn-dark { background: var(--ink); color: var(--paper); }
.btn-dark:hover { background: #2a2a2a; transform: translateY(-1px); }

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 12%;
  filter: grayscale(1) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,13,13,0.18) 0%, rgba(13,13,13,0.05) 35%, rgba(13,13,13,0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: left;
  color: var(--paper);
  padding: 0 1.25rem 3.5rem;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.7rem, 4vw, 3.1rem);
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 1.1rem;
  max-width: 46rem;
}

.hero-sub {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  opacity: 0.92;
}

@media (max-width: 859px) {
  .hero-img { object-position: 50% 0; }

  .hero-overlay {
    background: linear-gradient(180deg,
      rgba(13, 13, 13, 0.25) 0%,
      rgba(13, 13, 13, 0.12) 28%,
      rgba(13, 13, 13, 0.8) 58%,
      rgba(13, 13, 13, 0.94) 100%);
  }
}

@media (min-width: 860px) {
  .hero { align-items: center; }

  .hero-img {
    left: auto;
    right: 0;
    width: 72%;
    object-position: 50% 14%;
  }

  .hero-overlay {
    background: linear-gradient(90deg,
      #0d0d0d 0%,
      #0d0d0d 31%,
      rgba(13, 13, 13, 0.82) 42%,
      rgba(13, 13, 13, 0.28) 58%,
      rgba(13, 13, 13, 0.05) 72%,
      rgba(13, 13, 13, 0.25) 100%);
  }

  .hero-content { padding-bottom: 2rem; }

  .hero h1 { max-width: 38rem; }

  .hero-sub, .hero .btn-light { max-width: 38rem; }
}

/* Sections shared */
section { padding: 5.5rem 0; }

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.9rem;
}

.eyebrow-light { color: var(--paper-warm); opacity: 0.75; }

h2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.06;
  text-transform: uppercase;
}

/* Story */
.story { background: var(--paper-warm); }

.story-grid {
  display: grid;
  gap: 2.5rem;
}

.story-body p {
  font-size: 1.06rem;
  max-width: 38rem;
}

.story-body p + p { margin-top: 1.2rem; }

.story-reveal {
  font-family: var(--font-head);
  font-size: 1.35rem !important;
  font-weight: 600;
  line-height: 1.3;
}

.story-reveal strong { color: var(--accent); }

@media (min-width: 860px) {
  .story-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

/* Sale */
.sale {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.sale-title {
  font-size: clamp(2.6rem, 9vw, 6.5rem);
  font-weight: 800;
  margin-bottom: 1.4rem;
}

.sale-sub {
  max-width: 30rem;
  margin: 0 auto 2rem;
  opacity: 0.85;
}

/* Collections index */
.collections { padding-bottom: 0; }

.collections-note { color: rgba(13,13,13,0.6); margin-bottom: 2.5rem; }

.collection-list {
  list-style: none;
  border-top: 1px solid var(--hairline);
}

.collection-list li { border-bottom: 1px solid var(--hairline); }

.collection-list a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.4rem 1.25rem;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.25s ease, color 0.25s ease;
}

.c-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 5rem);
  line-height: 1;
  text-transform: uppercase;
}

.c-tag {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(13,13,13,0.55);
  transition: color 0.25s ease;
}

.collection-list a:hover,
.collection-list a:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.collection-list a:hover .c-tag,
.collection-list a:focus-visible .c-tag { color: rgba(255,255,255,0.7); }

/* Owners */
.owners { background: var(--paper); }

.owners-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

.owners-photo img { border-radius: 4px; }

.owners-text p { max-width: 34rem; margin-bottom: 1.2rem; font-size: 1.02rem; }

.owners-text h2 { margin-bottom: 1.2rem; }

@media (min-width: 860px) {
  .owners-grid { grid-template-columns: 6fr 6fr; gap: 4.5rem; }
}

/* Visit */
.visit { background: var(--paper-warm); }

.visit-grid {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.visit h2 { margin-bottom: 0.9rem; }

.visit-note { margin-bottom: 1.8rem; color: rgba(13,13,13,0.65); }

.hours {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.hours th,
.hours td {
  text-align: left;
  padding: 0.95rem 0.25rem;
  border-bottom: 1px solid var(--hairline);
}

.hours th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.hours td { text-align: right; font-variant-numeric: tabular-nums; }

.hours .closed { color: rgba(13,13,13,0.45); }

@media (min-width: 860px) {
  .visit-grid { grid-template-columns: 6fr 5fr; gap: 5rem; }
}

/* Instagram */
.insta {
  background: var(--cacao);
  color: var(--paper);
  text-align: center;
}

.insta-handle { margin-bottom: 1rem; word-break: break-all; }

.insta-handle a {
  color: var(--accent-bright);
  text-decoration: none;
  border-bottom: 3px solid rgba(143, 208, 143, 0.35);
}

.insta-handle a:hover,
.insta-handle a:focus-visible { border-bottom-color: var(--accent-bright); }

.insta-sub {
  max-width: 30rem;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.2rem;
  padding-bottom: 3rem;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.2;
}

.footer-brand em {
  font-style: normal;
  font-weight: 500;
  text-transform: lowercase;
}

.footer-col h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 0.7rem;
}

.footer-col p { font-size: 0.95rem; line-height: 1.8; }

.footer-col a { color: var(--paper); text-decoration: underline; text-underline-offset: 3px; }

.footer-col a:hover, .footer-col a:focus-visible { opacity: 0.8; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 1.6rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

@media (min-width: 760px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .announce-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn { transition: none; }
}
