:root {
  --forest: #143528;
  --moss: #2f5a42;
  --sage: #7a9a84;
  --mist: #d7e3da;
  --fog: #eef4f0;
  --ink: #142019;
  --muted: #4a5c52;
  --sun: #e6b84a;
  --sun-soft: #f3d98a;
  --paper: #f4f7f5;
  --white: #ffffff;
  --radius: 0;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(122, 154, 132, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(230, 184, 74, 0.08), transparent 50%),
    linear-gradient(180deg, var(--fog) 0%, var(--paper) 40%, #e4ebe6 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a {
  color: var(--moss);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--forest);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  color: var(--white);
  mix-blend-mode: normal;
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  justify-content: flex-end;
}

.nav a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--sun-soft);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    url("assets/images/hero-camping.jpg") center 45% / cover no-repeat;
  transform: scale(1.02);
  animation: hero-drift 20s var(--ease) infinite alternate;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 28, 22, 0.2) 0%, rgba(18, 28, 22, 0.08) 45%, rgba(12, 22, 18, 0.68) 100%),
    linear-gradient(90deg, rgba(12, 22, 18, 0.28) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: clamp(2rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem) clamp(3rem, 8vw, 5.5rem);
  max-width: 42rem;
  animation: rise 1.1s var(--ease) both;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.55rem, 3.6vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 14ch;
}

.hero-lead {
  margin: 0 0 1.75rem;
  font-weight: 300;
  font-size: 1.05rem;
  max-width: 36ch;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Archive strip — historical entrance right under hero */
.archive-strip {
  background: linear-gradient(180deg, #1e3d2e 0%, #163226 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.archive-inner {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 800px) {
  .archive-inner {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.archive-figure {
  margin: 0;
}

.archive-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.archive-figure figcaption {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.archive-figure a {
  color: var(--sun-soft);
}

.archive-copy .eyebrow {
  color: var(--sun-soft);
}

.archive-copy h2 {
  color: var(--white);
  margin-bottom: 0.85rem;
}

.archive-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 34rem;
  font-size: 1.05rem;
  font-weight: 300;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--sun);
  color: var(--forest);
}

.btn-primary:hover {
  background: var(--sun-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--sun-soft);
  color: var(--sun-soft);
}

/* Sections */
.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  margin: 0 0 0.75rem;
}

.eyebrow.light {
  color: var(--sun-soft);
}

.section h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1rem;
}

.dual {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

@media (min-width: 860px) {
  .dual {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .dual.reverse {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .dual.reverse .story-copy {
    order: 2;
  }
}

.story-figure {
  margin: 0;
  position: relative;
}

.story-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  box-shadow: 0 24px 60px rgba(20, 53, 40, 0.18);
}

.story-figure::after {
  content: "";
  position: absolute;
  inset: auto -0.75rem -0.75rem auto;
  width: 42%;
  height: 42%;
  background: linear-gradient(135deg, transparent 40%, rgba(230, 184, 74, 0.25));
  z-index: -1;
  pointer-events: none;
}

.story-figure figcaption,
.gallery-grid figcaption {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* Timeline */
.timeline-section {
  background:
    linear-gradient(180deg, rgba(20, 53, 40, 0.04), transparent 30%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(47, 90, 66, 0.035) 11px,
      rgba(47, 90, 66, 0.035) 12px
    );
}

.timeline {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-left: 2px solid rgba(47, 90, 66, 0.25);
}

.timeline li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 0 0 1.75rem 1.5rem;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -0.42rem;
  top: 0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sun);
  box-shadow: 0 0 0 4px rgba(230, 184, 74, 0.25);
}

.timeline .year {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--forest);
  font-size: 1.05rem;
}

.timeline h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
}

.timeline p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 600px) {
  .timeline li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* Memories */
.memories blockquote {
  margin: 0 0 1.25rem;
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-left: 3px solid var(--sun);
}

.memories blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.45;
  color: var(--forest);
  font-weight: 500;
}

.memories cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--sage);
  font-family: var(--font-body);
}

.text-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

.text-link:hover {
  color: var(--forest);
}

/* Today / twist */
.today {
  padding-top: 0;
}

.today-hero {
  position: relative;
  min-height: min(78vh, 640px);
  overflow: hidden;
  color: var(--white);
}

.today-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.today-overlay {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
  background:
    linear-gradient(180deg, rgba(10, 24, 18, 0.15) 0%, rgba(10, 24, 18, 0.72) 100%);
}

.today-overlay h2 {
  color: var(--white);
  max-width: 16ch;
}

.today-overlay p {
  max-width: 40rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  font-weight: 300;
}

.today-grid {
  margin-top: clamp(2.5rem, 6vw, 4rem);
}

.today-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 1rem 0 0.5rem;
  color: var(--forest);
}

.today-card p {
  margin: 0;
  color: var(--muted);
}

.today-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.today-closing {
  width: min(720px, calc(100% - 2.5rem));
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--forest);
  font-weight: 500;
}

/* Gallery */
.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 800px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.gallery-grid figure:hover img {
  transform: scale(1.04);
}

.gallery-grid figure:nth-child(1),
.gallery-grid figure:nth-child(6) {
  grid-column: span 1;
}

@media (min-width: 800px) {
  .gallery-grid figure:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-grid figure:nth-child(1) img {
    aspect-ratio: 16 / 9;
  }
}

/* In de buurt */
.partners-intro {
  max-width: 38rem;
  color: var(--muted);
  margin: 0 0 1.75rem;
  font-size: 1.05rem;
}

.neighbors-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(47, 90, 66, 0.2);
}

@media (min-width: 720px) {
  .neighbors-list {
    grid-template-columns: 1fr 1fr;
  }
}

.neighbor-item {
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(47, 90, 66, 0.15);
}

@media (min-width: 720px) {
  .neighbor-item:nth-child(odd) {
    padding-right: 1.5rem;
  }

  .neighbor-item:nth-child(even) {
    padding-left: 1.5rem;
  }
}

.neighbor-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--forest);
  margin: 0 0 0.2rem;
}

.neighbor-name a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.neighbor-name a:hover {
  border-bottom-color: currentColor;
}

.neighbor-place {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.25rem;
}

.neighbor-blurb {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Sources */
.sources {
  padding-top: 2rem;
}

.sources-inner {
  border-top: 1px solid rgba(47, 90, 66, 0.2);
  padding-top: 3rem;
}

.sources h2 {
  font-size: 1.5rem;
}

.sources ul {
  padding-left: 1.15rem;
  color: var(--muted);
}

.sources li {
  margin-bottom: 0.45rem;
}

.sources .note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--sage);
}

/* Footer */
.site-footer {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.35rem;
}

.site-footer p {
  margin: 0.25rem 0;
}

.footer-small {
  margin-top: 1rem !important;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Motion */
@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.1) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-media,
  .reveal,
  .gallery-grid img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav {
    gap: 0.5rem 1rem;
  }
}
