/* 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; }

[id] { scroll-margin-top: 6.5rem; }

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

img { max-width: 100%; height: auto; 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: -4px; }

.btn-dark:focus-visible, .btn-ghost:focus-visible { outline-color: var(--paper); }

.btn-light:focus-visible, .btn-outline:focus-visible { outline-color: var(--ink); }

.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% 32%;
  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-kicker {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.8rem;
}

.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% 28%; }

  .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% 40%;
  }

  .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);
  display: block;
  margin-top: 0.15em;
}

@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.6);
  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.62); }

@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; font-size: clamp(1.15rem, 5.4vw, 3.2rem); white-space: nowrap; }

.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; }
}

/* Skip-link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1.2rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

.skip-link:focus { top: 0.5rem; }

/* Mobiele navigatie zichtbaar */
@media (max-width: 759px) {
  .site-header nav { flex-wrap: wrap; row-gap: 0.15rem; padding-bottom: 0.6rem; }

  .nav-links {
    display: flex;
    order: 3;
    width: 100%;
    gap: 1.1rem;
    margin-left: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar { display: none; }

  .nav-links {
    -webkit-mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
    mask-image: linear-gradient(90deg, #000 88%, transparent 100%);
    padding-right: 1.5rem;
  }

  .nav-links a { white-space: nowrap; font-size: 0.7rem; }
}

/* Hero acties */
.hero-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(13, 13, 13, 0.4);
}

.btn-outline:hover { background: rgba(13, 13, 13, 0.06); transform: translateY(-1px); }

/* Persverwijzing */
.press-note { font-size: 0.92rem; color: rgba(13, 13, 13, 0.65); }

.press-note a { color: var(--ink); text-underline-offset: 3px; }

.press-note a:hover, .press-note a:focus-visible { color: var(--accent); }

.owners-text .btn { margin-top: 0.4rem; }

/* Collecties CTA */
.collections-cta { padding: 2.2rem 1.25rem 1.5rem; }

/* FAQ */
.faq { background: var(--paper); padding-top: 5.5rem; }

.faq-grid { display: grid; gap: 2rem; }

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

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

.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1.1rem 0.2rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-list summary::after { transition: transform 0.2s ease; }

.faq-list details[open] summary::after { transform: rotate(45deg); }

.faq-list summary:hover { color: var(--accent); }

.faq-list summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.faq-list details p { padding: 0 0.2rem 1.2rem; max-width: 40rem; }

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

/* Mobiele actiebalk */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: env(safe-area-inset-bottom);
}

@media (max-width: 759px) {
  .mobile-bar { display: flex; }

  body { padding-bottom: 3.2rem; }
}

.mobile-bar a {
  flex: 1;
  text-align: center;
  padding: 0.9rem 0;
  color: var(--paper);
  text-decoration: none;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-bar a + a { border-left: 1px solid rgba(255, 255, 255, 0.15); }

.mobile-bar a:focus-visible { outline: 2px solid var(--paper); outline-offset: -3px; }

/* Archiefpagina */
.archief-intro { background: var(--paper-warm); padding: 4.5rem 0; }

.archief-intro h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.06;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.archief-intro-sub { max-width: 40rem; margin-bottom: 1.8rem; color: rgba(13, 13, 13, 0.75); }

.archief-cat { padding: 4rem 0 2.5rem; }

.archief-cat-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 1rem;
  margin-bottom: 1.8rem;
}

.archief-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

@media (min-width: 600px) { .archief-grid { grid-template-columns: repeat(3, 1fr); } }

@media (min-width: 960px) { .archief-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.archief-card { position: relative; margin: 0; overflow: hidden; border-radius: 4px; background: var(--paper-warm); }

.archief-card img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }

.archief-card:hover img { transform: scale(1.03); }

.archief-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.7rem;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0) 0%, rgba(13, 13, 13, 0.78) 45%, rgba(13, 13, 13, 0.88) 100%);
}

.sold-tag {
  background: var(--paper);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  flex-shrink: 0;
}

.card-alt {
  color: var(--paper);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archief-meer { background: var(--paper-warm); padding: 3.5rem 0; margin-top: 2rem; }

.archief-meer h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }

.archief-meer p { max-width: 40rem; }

.archief-meer a { color: var(--ink); text-underline-offset: 3px; }

.archief-meer a:hover, .archief-meer a:focus-visible { color: var(--accent); }

@media (prefers-reduced-motion: reduce) {
  .archief-card img { transition: none; }
  .archief-card:hover img { transform: none; }
}


/* Contactformulier */
.contact { background: var(--paper); }

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

.contact-note { max-width: 30rem; margin-top: 0.5rem; color: rgba(13, 13, 13, 0.75); }

.contact-note a { color: var(--ink); text-underline-offset: 3px; }

.contact-note a:hover, .contact-note a:focus-visible { color: var(--accent); }

.contact-form { display: grid; gap: 1.1rem; }

.form-veld { display: grid; gap: 0.35rem; }

.form-veld label {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-veld input,
.form-veld textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(13, 13, 13, 0.35);
  border-radius: 4px;
  padding: 0.75rem 0.9rem;
}

.form-veld input:focus-visible,
.form-veld textarea:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 1px;
  border-color: var(--ink);
}

.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-privacy { font-size: 0.82rem; color: rgba(13, 13, 13, 0.6); }

.contact-form .btn { justify-self: start; border: 0; cursor: pointer; font-size: 0.74rem; }

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


/* Losse pagina's: 404, bedankt, foutmelding */
.standalone {
  display: grid;
  min-height: 100vh;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  background: var(--paper-warm);
}

.standalone h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 0.8rem;
}

.standalone p { margin-bottom: 1.6rem; color: rgba(13, 13, 13, 0.7); max-width: 32rem; }

.standalone .acties { display: flex; gap: 0.8rem; justify-content: center; flex-wrap: wrap; }

.btn-groen { background: var(--accent); color: var(--paper); }

.btn-groen:hover { background: #34592c; transform: translateY(-1px); }

.btn-groen:focus-visible { outline-color: var(--paper); }


/* Strakker verticaal ritme op mobiel */
@media (max-width: 759px) {
  section { padding: 4rem 0; }

  .faq { padding-top: 4rem; }

  .collections { padding-bottom: 0; }

  .archief-intro { padding: 3.5rem 0; }

  .archief-cat { padding: 3rem 0 1.5rem; }
}


/* Open-badge en trustregel in de hero */
.open-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.hero-trust { margin-top: 1.1rem; font-size: 0.82rem; }

.hero-trust a {
  color: rgba(255, 255, 255, 0.85);
  text-underline-offset: 3px;
}

.hero-trust a:hover, .hero-trust a:focus-visible { color: var(--paper); }

/* Tekstpagina (privacy) */
.tekstpagina { padding: 4.5rem 0 5rem; }

.tekstpagina h1 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  text-transform: uppercase;
  line-height: 1.06;
  margin-bottom: 1.2rem;
}

.tekstpagina h2 {
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  margin: 2rem 0 0.6rem;
}

.tekstpagina p { max-width: 42rem; }

.tekstpagina p + p { margin-top: 0.8rem; }

.tekstpagina a { color: var(--ink); text-underline-offset: 3px; }

.tekstpagina a:hover, .tekstpagina a:focus-visible { color: var(--accent); }

.tekst-terug { margin-top: 2.5rem; }

.tekstpagina .tekst-terug a { color: var(--paper); text-decoration: none; }
