/* ═══════════════════════════════════════════════════
   VONDST ZEIST — van iemand voor jou
   Design system
   ═══════════════════════════════════════════════════ */

/* Brand fonts */
@font-face {
  font-family: "Superme";
  src: url("assets/fonts/Superme.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Amandine";
  src: url("assets/fonts/amandine-regular.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Palette — warm, sustainable boutique with a soft rose accent (from logo) */
  --cream:      #F6F1E9;
  --cream-deep: #EFE7D9;
  --paper:      #FBF8F3;
  --ink:        #2A2620;
  --ink-soft:   #4A443B;
  --muted:      #857B6C;
  --olive:      #5F5D3F;
  --olive-soft: #7C7A57;
  --clay:       #B5694A;
  --rose:       #C99BA0;
  --line:       #DED4C2;

  --serif: "Superme", "Cormorant Garamond", Georgia, serif;   /* display headings */
  --body:  "Amandine", Georgia, serif;                        /* running text */
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;       /* micro UI labels */

  --maxw: 1240px;
  --pad: clamp(1.25rem, 5vw, 5rem);
  --radius: 4px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }

::selection { background: var(--olive); color: var(--cream); }

/* ── Layout helpers ── */
.section { padding: clamp(4.5rem, 10vw, 9rem) var(--pad); }

.kicker {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.25rem;
}
.kicker--light { color: #D9C3A8; }

.section h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  color: var(--ink);
  margin-bottom: 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 1.05rem 2.1rem;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.45s var(--ease);
}
.btn--solid { background: var(--clay); color: var(--cream); }
.btn--solid:hover { background: var(--ink); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: var(--cream); color: var(--ink); }
.btn--light:hover { background: var(--clay); color: var(--cream); transform: translateY(-2px); }

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.4s var(--ease);
  padding: 0.5rem 0;
}
.nav.scrolled {
  background: rgba(246, 241, 233, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

/* Transparent nav over the hero: light text + logo; turns dark once the bar lightens on scroll */
.nav:not(.scrolled) .nav__links a { color: var(--cream); }
.nav:not(.scrolled) .brand__sub { color: #EAD9C0; }
.nav:not(.scrolled) .nav__ig { color: #EAD9C0 !important; }
.nav:not(.scrolled) .brand__logo { filter: none; }            /* logo in its soft-rose, light */
.nav:not(.scrolled) .nav__toggle span { background: var(--cream); }
.nav:not(.scrolled) .nav__toggle[aria-expanded="true"] span { background: var(--ink); }
.nav__inner {
  /* full-bleed so the logo hugs the corner and lines up with the hero text (both at --pad) */
  width: 100%;
  padding: 0.9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 0.6rem; line-height: 1; }
.brand__logo {
  height: 24px;
  width: auto;
  /* the brand logo ships in soft rose; darken it for legibility on the light nav */
  filter: brightness(0);
  transition: filter 0.5s var(--ease);
}
/* wordmark-with-tagline: taller so the strapline stays legible */
.brand__logo--tagline { height: 46px; }
.brand__sub {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--clay);
  font-weight: 500;
  position: relative;
  top: 1px;
}

.nav__links { display: flex; align-items: center; gap: 2.1rem; }
.nav__links a {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--clay);
  transition: width 0.4s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { width: 100%; }
.nav__ig { color: var(--clay) !important; font-weight: 500 !important; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 110;
}
.nav__toggle span {
  width: 26px; height: 1.5px;
  background: var(--ink);
  transition: all 0.4s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 7rem var(--pad) 5rem;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }
.hero__veil {
  position: absolute; inset: 0;
  /* top scrim keeps the light nav readable; lower darkening carries the headline + marquee */
  background:
    linear-gradient(180deg, rgba(42,38,32,0.5) 0%, rgba(42,38,32,0) 13%),
    linear-gradient(180deg, rgba(42,38,32,0) 30%, rgba(42,38,32,0.16) 44%, rgba(42,38,32,0.42) 80%, rgba(42,38,32,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  color: var(--cream);
}
.hero__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #EFE5D4;
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 18px rgba(42,38,32,0.5);
}
.hero__title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 1.6rem;
  text-shadow: 0 2px 30px rgba(42,38,32,0.45);
}
.hero__title em { font-style: italic; font-weight: 400; color: #E7D4BC; }
.hero__lede {
  font-size: clamp(0.96rem, 1.35vw, 1.1rem);
  max-width: 30em;
  color: rgba(246,241,233,0.95);
  margin-bottom: 2.4rem;
  font-weight: 300;
  text-shadow: 0 1px 22px rgba(42,38,32,0.5);
}
/* Hero call-to-actions as minimal text links (impressie style) */
.hero__actions { display: flex; flex-wrap: wrap; gap: 2.2rem; }
.hero__link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(246,241,233,0.45);
  transition: border-color 0.4s var(--ease), opacity 0.4s var(--ease);
}
.hero__link:hover { border-color: var(--cream); opacity: 0.85; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px; height: 44px;
  border: 1px solid rgba(246,241,233,0.5);
  border-radius: 14px;
  display: flex; justify-content: center;
}
.hero__scroll span {
  width: 3px; height: 8px;
  background: var(--cream);
  border-radius: 2px;
  margin-top: 8px;
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translateY(0);} 40% {opacity:1;} 80%{opacity:0; transform: translateY(12px);} 100%{opacity:0;} }

/* ═══ MARQUEE ═══ */
.marquee {
  background: var(--clay);
  color: var(--cream);
  overflow: hidden;
  padding: 0.68rem 0;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  animation: marquee 26s linear infinite;
}
.marquee__track span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}
.marquee__track .dot { color: rgba(246,241,233,0.6); font-style: normal; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ═══ CONCEPT ═══ */
.concept { background: var(--paper); }
.concept__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.concept__media { position: relative; }
.concept__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.concept__badge {
  position: absolute;
  bottom: -28px; right: -20px;
  background: var(--clay);
  color: var(--cream);
  width: 118px; height: 118px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(42,38,32,0.18);
}
.concept__badge span { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; }
.concept__badge strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; }

.concept__text h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
.concept__text > p { color: var(--ink-soft); max-width: 40em; margin-bottom: 2.5rem; }

.pillars { list-style: none; display: grid; gap: 1.5rem; }
.pillars li { border-top: 1px solid var(--line); padding-top: 1.25rem; }
.pillars h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 0.4rem;
}
.pillars p { color: var(--muted); font-size: 0.96rem; }

/* ═══ FULL-WIDTH BAND ═══ */
.band { width: 100%; height: clamp(420px, 56vh, 660px); overflow: hidden; background: var(--cream-deep); }
.band img { width: 100%; height: 100%; object-fit: cover; object-position: center 14%; display: block; }

/* ═══ INBRENGEN ═══ */
.inbreng { background: var(--cream); }
.inbreng__head { max-width: 680px; margin: 0 auto clamp(3rem, 6vw, 4.5rem); text-align: center; }
.inbreng__head .kicker { color: var(--clay); }
.inbreng__intro { color: var(--ink-soft); }

.steps {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.step {
  background: var(--paper);
  padding: 2.4rem 2rem;
  transition: background 0.45s var(--ease);
}
.step:hover { background: #fff; }
.step__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--clay);
  display: block;
  margin-bottom: 1rem;
}
.step h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}
.step p { color: var(--muted); font-size: 0.94rem; }
.step strong { color: var(--olive); font-weight: 600; }

.inbreng__cta {
  max-width: var(--maxw);
  margin: 3rem auto 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.inbreng__note { color: var(--muted); font-size: 0.9rem; }

/* ═══ VESTHIAIRE ═══ */
.vesthiaire { background: var(--ink); color: var(--cream); padding: 0; }
.vesthiaire__inner {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.vesthiaire__text {
  padding: clamp(3.5rem, 8vw, 7rem) var(--pad);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.vesthiaire__text h2 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.vesthiaire__tag { font-family: var(--serif); font-size: 1.4rem; color: #D9C3A8; margin-bottom: 1.6rem; }
.vesthiaire__text > p { color: rgba(246,241,233,0.78); max-width: 32em; margin-bottom: 2.2rem; }
.vesthiaire__media { position: relative; min-height: 420px; background: var(--ink); }
.vesthiaire__media img,
.vesthiaire__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* ═══ GALLERY ═══ */
.gallery { background: var(--paper); text-align: center; }
.gallery__head { max-width: 640px; margin: 0 auto 3.5rem; }
.gallery__head h2 { font-style: italic; }
.gallery__handle { color: inherit; transition: color 0.3s var(--ease); }
.gallery__handle:hover { color: var(--clay); }
.gallery__head p { color: var(--ink-soft); }
.gallery__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__icon {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(95,93,63,0.35);
  color: var(--cream);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.gallery__item:hover .gallery__icon { opacity: 1; }
.gallery__cta { margin-top: 3rem; }

/* ═══ TEAM ═══ */
.team { background: var(--cream); text-align: center; }
.team__head { max-width: 640px; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); }
.team__head p { color: var(--ink-soft); }
.team__grid {
  list-style: none;
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}
.team__member { display: flex; flex-direction: column; align-items: center; width: 200px; }
.team__avatar {
  width: 104px; height: 104px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
  box-shadow: 0 16px 36px rgba(42,38,32,0.16);
  overflow: hidden;
}
.team__avatar--photo {
  padding: 0;
  font-size: 0;
}
.team__avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team__member h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.2rem;
}
.team__member > p {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ═══ VISIT ═══ */
.visit { background: var(--cream-deep); }
.visit__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: stretch;
}
.visit__lede { color: var(--ink-soft); max-width: 34em; margin-bottom: 2.6rem; }
.visit__cards { display: grid; gap: 1.4rem; }
.visit__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
}
.visit__card h3 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.8rem;
}
.visit__card p, .visit__card a { color: var(--ink-soft); }
.visit__card a:hover { color: var(--clay); }
.link-arrow {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--olive) !important;
  border-bottom: 1px solid var(--olive);
  padding-bottom: 1px;
}
.hours { list-style: none; }
.hours li { display: flex; justify-content: space-between; gap: 2rem; padding: 0.2rem 0; }
.hours .muted, .muted { color: var(--muted); }
.hours__notice {
  margin-top: 1rem;
  padding: 0.6rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--clay);
  background: rgba(181, 105, 74, 0.10);
  border-left: 2px solid var(--clay);
  border-radius: 6px;
}

.visit__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
}
.visit__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.25) sepia(0.08); }

/* ═══ FOOTER ═══ */
.footer { background: var(--ink); color: var(--cream); padding: clamp(3.5rem, 7vw, 5.5rem) var(--pad) 2rem; }
.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246,241,233,0.14);
}
.footer__logo { height: 30px; width: auto; opacity: 0.95; } /* shows the brand soft-rose on the dark footer */
.footer__brand .brand__sub { color: #D9C3A8; display: inline-block; margin-top: 0.5rem; }
.footer__brand p { color: rgba(246,241,233,0.6); margin-top: 1rem; font-size: 0.92rem; }
.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 0.7rem; padding-top: 0.5rem; }
.footer__nav a, .footer__contact a { color: rgba(246,241,233,0.78); font-size: 0.92rem; width: fit-content; transition: color 0.3s; }
.footer__nav a:hover, .footer__contact a:hover { color: var(--cream); }
.footer__bar {
  max-width: var(--maxw);
  margin: 1.6rem auto 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(246,241,233,0.45);
}

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 960px) {
  /* On mobile, drop the backdrop-filter: it would make .nav a containing block
     for the fixed drawer, collapsing it. Use a solid background instead. */
  .nav.scrolled {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: rgba(246, 241, 233, 0.97);
  }
  .nav__links {
    position: fixed;
    top: 0; right: 0; bottom: auto; left: auto;
    height: 100vh;
    height: 100dvh;
    width: min(78vw, 340px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.8rem;
    background: var(--cream);
    padding: 4rem var(--pad);
    transform: translateX(100%);
    transition: transform 0.55s var(--ease);
    box-shadow: -20px 0 60px rgba(42,38,32,0.12);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; }
  /* drawer panel is cream, so its links stay dark even while the nav is transparent */
  .nav:not(.scrolled) .nav__links a { color: var(--ink-soft); }
  .nav:not(.scrolled) .nav__ig { color: var(--clay) !important; }

  .concept__grid { grid-template-columns: 1fr; }
  .concept__media { max-width: 480px; }
  .concept__badge { width: 100px; height: 100px; right: 0; }

  .steps { grid-template-columns: repeat(2, 1fr); }
  .vesthiaire__inner { grid-template-columns: 1fr; }
  .vesthiaire__media { min-height: 360px; order: -1; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .visit__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .nav .brand__sub { display: none; } /* keep the logo clean on small screens */
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero { padding-top: 6rem; }
  .concept__badge { right: 12px; bottom: -20px; }
  .hours li { gap: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
