/* ============================================
   VANSTERDAM TOURS — style.css
   ============================================ */

@font-face {
  font-family: 'Graphik';
  src: url('../assets/fonts/Graphik-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('../assets/fonts/Graphik-RegularItalic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('../assets/fonts/Graphik-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('../assets/fonts/Graphik-Semibold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}

:root {
  --cream:     #FAF7F2;
  --parchment: #F2EAD8;
  --linen:     #E6D9C8;
  --warm:      #C9B08A;
  --gold:      #B8923C;
  --gold-hi:   #D4AF62;
  --gold-pale: #EEE0BC;
  --char:      #1C1814;
  --ink:       #2A2420;
  --dusk:      #4A3F35;
  --f: 'Graphik', 'DM Sans', system-ui, sans-serif;
  --px: clamp(20px, 5vw, 72px);
  --py: clamp(60px, 9vw, 100px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--f);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }


/* ══════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════ */
#loader {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 9999;
  background: var(--char);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  transition: opacity .5s ease, visibility .5s ease;
}
#loader.out { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-word {
  font-family: var(--f); font-size: clamp(.9rem, 4vw, 1.2rem);
  font-weight: 600; letter-spacing: .36em; color: var(--cream);
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-line { width: 0; height: 1px; background: var(--gold); animation: grow 1.3s ease forwards; }
@keyframes pulse { 50% { opacity: .3; } }
@keyframes grow  { to { width: 64px; } }


/* ══════════════════════════════════════════
   NAV
   ══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; padding: 0 var(--px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,247,242,.94);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, box-shadow .4s;
}
#nav.scrolled { border-color: var(--linen); box-shadow: 0 2px 24px rgba(28,24,20,.07); }

.nav-logo img { height: 32px; width: auto; }
.logo-text    { font-family: var(--f); font-size: .9rem; font-weight: 600; letter-spacing: .2em; color: var(--char); }

.nav-links { display: none; list-style: none; align-items: center; gap: 28px; }
.nav-links a {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--dusk);
  position: relative; transition: color .3s;
}
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width .3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--char) !important; color: var(--cream) !important; padding: 9px 20px; border-radius: 3px; transition: background .3s !important; }
.nav-cta:hover { background: var(--gold) !important; color: var(--char) !important; }
.nav-cta::after { display: none !important; }

.burger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--char); }

.mobile-menu {
  display: none; position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 200;
  background: var(--cream); flex-direction: column;
  padding: clamp(24px, 6vw, 44px);
}
.mobile-menu.open { display: flex; }
.menu-close { background: none; border: none; cursor: pointer; font-size: 1.3rem; color: var(--char); align-self: flex-end; margin-bottom: 40px; }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li + li { margin-top: 2px; }
.mobile-menu ul a {
  font-family: var(--f); font-size: clamp(1.6rem, 7vw, 2.6rem); font-weight: 500;
  letter-spacing: .04em; color: var(--char); display: block;
  padding: 14px 0; border-bottom: 1px solid var(--linen);
  transition: color .25s, padding-left .25s;
}
.mobile-menu ul a:hover { color: var(--gold); padding-left: 8px; }

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


/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.hero {
  min-height: 100svh; position: relative;
  display: flex; align-items: center;
  padding: calc(64px + clamp(40px,8vw,80px)) var(--px) clamp(60px,10vw,90px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 72% 32%, rgba(184,146,60,.1) 0%, transparent 62%),
    linear-gradient(155deg, var(--cream) 0%, #F5EDDA 55%, #EDE0C6 100%);
}
.hero-watermark {
  position: absolute; z-index: 0;
  font-family: var(--f); font-size: clamp(5rem, 28vw, 20rem); font-weight: 700;
  color: rgba(184,146,60,.04); right: -1vw; bottom: -4%;
  line-height: 1; pointer-events: none; user-select: none; letter-spacing: -.02em;
}
.hero-content { position: relative; z-index: 2; max-width: min(560px, 100%); }

.pre-label {
  font-size: clamp(.62rem, 1.5vw, .7rem); font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: clamp(16px, 4vw, 26px);
  opacity: 0; animation: fadeUp .8s .2s forwards;
}
.pre-label::before { content: ''; width: 28px; height: 1px; background: var(--gold); flex-shrink: 0; }

h1 {
  font-family: var(--f);
  font-size: clamp(2.6rem, 9vw, 5.6rem); font-weight: 600; line-height: 1.08; color: var(--char);
  letter-spacing: -.02em;
  margin-bottom: clamp(14px, 3vw, 22px);
  opacity: 0; animation: fadeUp .9s .35s forwards;
}
h1 em { font-style: normal; color: var(--gold); display: block; font-weight: 400; }

.hero-sub {
  font-family: var(--f); font-size: clamp(.94rem, 2.2vw, 1.1rem);
  font-weight: 300; color: var(--dusk); line-height: 1.75; max-width: 440px;
  margin-bottom: clamp(28px, 6vw, 44px);
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero-btns {
  display: flex; flex-wrap: wrap; align-items: center; gap: clamp(10px, 3vw, 16px);
  opacity: 0; animation: fadeUp .9s .65s forwards;
}

.btn-primary {
  display: inline-flex; align-items: center;
  background: var(--char); color: var(--cream);
  font-family: var(--f); font-size: .75rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 13px clamp(22px, 4vw, 34px); border-radius: 3px;
  transition: background .3s, transform .25s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold); color: var(--char); transform: translateY(-2px); }

.btn-ghost {
  font-family: var(--f); font-size: .75rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; color: var(--dusk);
  border-bottom: 1px solid var(--linen); padding-bottom: 2px;
  transition: color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); }

.hero-scroll {
  position: absolute; bottom: clamp(16px, 4vw, 28px); left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  z-index: 2; opacity: 0; animation: fadeIn 1s 1.3s forwards;
}
.hero-scroll span { font-size: .58rem; letter-spacing: .22em; text-transform: uppercase; color: var(--warm); }
.scroll-line { width: 1px; height: 36px; background: linear-gradient(to bottom, var(--gold), transparent); animation: scrollDrop 2.2s ease-in-out infinite; }

@keyframes fadeUp    { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes fadeIn    { to { opacity: 1; } }
@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  55%  { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

@media (max-width: 420px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
}


/* ══════════════════════════════════════════
   STATS
   ══════════════════════════════════════════ */
.stats-bar {
  background: var(--char);
  padding: clamp(24px, 4vw, 36px) var(--px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: clamp(16px, 4vw, 52px);
}
.stat { text-align: center; min-width: 80px; }
.stat strong { font-family: var(--f); font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 600; color: var(--gold-hi); line-height: 1; display: block; }
.stat span   { font-family: var(--f); font-size: clamp(.58rem, 1.4vw, .66rem); font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--warm); margin-top: 6px; display: block; }
.stat-div    { width: 1px; height: 36px; background: rgba(255,255,255,.1); flex-shrink: 0; }
@media (max-width: 480px) { .stat-div { display: none; } }


/* ══════════════════════════════════════════
   SHARED LABEL
   ══════════════════════════════════════════ */
.label {
  font-family: var(--f); font-size: .68rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.label::before { content: ''; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }


/* ══════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════ */
.about { display: grid; grid-template-columns: 1fr; }

.about-top { display: grid; grid-template-columns: 1fr; }
@media (min-width: 900px) { .about-top { grid-template-columns: 1fr 1fr; min-height: 80vh; } }

.carousel-wrap { position: relative; overflow: hidden; background: var(--linen); min-height: 300px; }
@media (min-width: 900px) { .carousel-wrap { min-height: unset; } }

.carousel-track { display: flex; width: 100%; height: 100%; transition: transform .6s cubic-bezier(.25,.46,.45,.94); }
.carousel-slide { min-width: 100%; height: 100%; flex-shrink: 0; overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }

.c-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(250,247,242,.15); border: 1px solid rgba(250,247,242,.25);
  cursor: pointer; font-size: 1.1rem; color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(8px); transition: background .25s, transform .25s; z-index: 2;
}
.c-btn:hover { background: rgba(250,247,242,.28); transform: translateY(-50%) scale(1.08); }
.c-prev { left: 14px; } .c-next { right: 14px; }

.c-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.c-dot  { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.35); border: none; cursor: pointer; transition: background .3s, transform .3s; }
.c-dot.active { background: var(--cream); transform: scale(1.4); }

.c-counter { position: absolute; top: 16px; right: 16px; z-index: 2; font-family: var(--f); font-size: .64rem; font-weight: 500; letter-spacing: .12em; color: rgba(255,255,255,.55); background: rgba(0,0,0,.22); padding: 4px 10px; border-radius: 20px; }

.about-text {
  padding: clamp(40px, 6vw, 72px) clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream);
}
.about-text h2 {
  font-family: var(--f); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -.02em; color: var(--char);
  margin-bottom: 18px;
}
.about-text h2 em { font-style: normal; color: var(--gold); font-weight: 400; }
.about-text p {
  font-family: var(--f); font-size: clamp(.88rem, 1.6vw, .97rem);
  font-weight: 400; color: var(--dusk); line-height: 1.85; margin-bottom: 16px;
}

blockquote {
  font-family: var(--f); font-size: clamp(.9rem, 1.8vw, 1rem);
  font-weight: 400; font-style: normal;
  color: var(--dusk); line-height: 1.75;
  border-left: 2px solid var(--gold);
  padding: 8px 0 8px clamp(14px, 3vw, 22px);
  margin: clamp(16px, 3vw, 26px) 0;
}
blockquote cite {
  display: block; margin-top: 10px;
  font-family: var(--f); font-style: normal; font-size: .7rem;
  font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--warm);
}


/* ══════════════════════════════════════════
   EXPERIENCES
   ══════════════════════════════════════════ */
.experiences { padding: var(--py) var(--px); background: var(--parchment); overflow: hidden; }

.exp-header { margin-bottom: clamp(40px, 7vw, 68px); max-width: 600px; }
.exp-header h2 {
  font-family: var(--f); font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 600; line-height: 1.12; letter-spacing: -.02em; color: var(--char); margin-bottom: 12px;
}
.exp-header h2 em { font-style: normal; color: var(--gold); font-weight: 400; }
.exp-intro { font-family: var(--f); font-size: clamp(.88rem, 1.6vw, .97rem); font-weight: 400; color: var(--dusk); line-height: 1.8; }

.exp-grid { display: grid; grid-template-columns: 1fr; gap: 52px; }
@media (min-width: 760px)  { .exp-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (min-width: 1060px) { .exp-grid { grid-template-columns: repeat(3,1fr); gap: 32px; } }

.exp-card { display: flex; flex-direction: column; }

.exp-img-stack { position: relative; margin-bottom: 32px; }

.exp-img-main {
  position: relative; width: 100%; height: 220px;
  border-radius: 4px; overflow: hidden; display: block;
}
@media (min-width: 480px)  { .exp-img-main { height: 260px; } }
@media (min-width: 760px)  { .exp-img-main { height: 240px; } }
@media (min-width: 1060px) { .exp-img-main { height: 380px; } }

/* Main image placeholders */
.ph-heritage    { background: linear-gradient(145deg,#C8A870 0%,#8B6330 50%,#5A3D18 100%); }
.ph-cooking     { background: linear-gradient(145deg,#D48060 0%,#9E4F2A 50%,#682A14 100%); }
.ph-cannabis    { background: linear-gradient(145deg,#86AD76 0%,#537844 50%,#2E4A24 100%); }
/* Thumb placeholders */
.ph-heritage-dk { background: linear-gradient(145deg,#A07828 0%,#6B4818 50%,#3C2808 100%); }
.ph-cooking-dk  { background: linear-gradient(145deg,#B06040 0%,#7E3010 50%,#4A0A00 100%); }
.ph-cannabis-dk { background: linear-gradient(145deg,#607E54 0%,#3A5830 50%,#1C3010 100%); }

.exp-img-main img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.exp-placeholder {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

.exp-img-thumb {
  position: absolute; bottom: -18px; right: -10px;
  width: 80px; height: 80px;
  border-radius: 3px; overflow: hidden;
  border: 3px solid var(--parchment);
  box-shadow: 0 6px 20px rgba(28,24,20,.2);
  background: var(--linen); z-index: 3;
}
@media (min-width: 480px)  { .exp-img-thumb { width: 90px; height: 90px; } }
@media (min-width: 1060px) { .exp-img-thumb { width: 110px; height: 110px; bottom: -22px; right: -14px; } }
.exp-img-thumb img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.exp-img-thumb .exp-placeholder { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.exp-body { display: flex; flex-direction: column; flex: 1; }

.exp-meta { display: flex; align-items: baseline; gap: 12px; margin-bottom: 10px; }
.exp-num  { font-family: var(--f); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 600; line-height: 1; color: var(--gold-pale); letter-spacing: -.02em; }
.exp-dur  { font-family: var(--f); font-size: .67rem; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--warm); }

.exp-body h3 {
  font-family: var(--f); font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  font-weight: 600; line-height: 1.2; letter-spacing: -.01em; color: var(--char); margin-bottom: 10px;
}
.exp-body h3 em { font-style: normal; color: var(--gold); font-weight: 400; }
.exp-body p  { font-family: var(--f); font-size: clamp(.85rem, 1.5vw, .93rem); font-weight: 400; color: var(--dusk); line-height: 1.85; margin-bottom: 18px; flex: 1; }

.exp-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--linen); margin-top: auto; }
.exp-price    { font-family: var(--f); font-size: clamp(1.2rem, 2.8vw, 1.5rem); font-weight: 600; color: var(--char); line-height: 1; }
.exp-price em { font-style: normal; font-size: .64rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--warm); margin-left: 3px; }
.exp-link { font-family: var(--f); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--char); transition: color .3s; }
.exp-link:hover { color: var(--gold); }

.exp-cta { text-align: center; margin-top: clamp(48px, 7vw, 72px); }


/* ══════════════════════════════════════════
   STUDIO
   ══════════════════════════════════════════ */
.studio-section { background: var(--cream); }
.studio-row {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding: var(--py) var(--px);
  border-top: 1px solid var(--linen);
}
@media (min-width: 900px) { .studio-row { grid-template-columns: 1.1fr 1fr; align-items: start; } }

.studio-text h3 {
  font-family: var(--f); font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600; line-height: 1.18; letter-spacing: -.02em; color: var(--char); margin-bottom: 14px;
}
.studio-text h3 em { font-style: normal; color: var(--gold); font-weight: 400; }
.studio-text p { font-family: var(--f); font-size: clamp(.88rem, 1.6vw, .97rem); color: var(--dusk); line-height: 1.85; }
.studio-text p strong { color: var(--char); font-weight: 600; }

.studio-tiles { display: flex; flex-direction: column; gap: 12px; }
.tile { padding: 18px 20px; border: 1px solid var(--linen); border-radius: 3px; background: var(--parchment); transition: border-color .3s, box-shadow .3s; }
.tile:hover { border-color: var(--warm); box-shadow: 0 4px 18px rgba(28,24,20,.06); }
.tile strong { display: block; font-family: var(--f); font-size: .84rem; font-weight: 600; color: var(--char); margin-bottom: 4px; }
.tile span   { font-family: var(--f); font-size: .82rem; color: var(--dusk); line-height: 1.6; }


/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background-color: #1C1814;
  font-family: 'Graphik', 'DM Sans', system-ui, sans-serif;
  color: #C9B08A;
}

/* Top section */
.footer-top {
  padding: 48px 24px 36px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 680px) {
  .footer-top {
    padding: 60px 40px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
@media (min-width: 1000px) {
  .footer-top {
    padding: 72px 72px 56px;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 0 60px;
  }
}

/* Brand column */
.footer-col {}

.footer-logo {
  height: 28px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #C9B08A;
  margin-bottom: 20px;
}

.footer-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #D4AF62;
  text-decoration: none;
  transition: color .2s;
}
.footer-ig:hover { color: #FAF7F2; }

/* Column headings */
.footer-col-heading {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #FAF7F2;
  margin-bottom: 16px;
  display: block;
}

/* Contact items */
.footer-contact-item {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #C9B08A;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}
a.footer-contact-item:hover { color: #FAF7F2; }

/* Nav links */
.footer-nav-link {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #C9B08A;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-nav-link:hover { color: #FAF7F2; }
.footer-book {
  margin-top: 6px;
  color: #D4AF62;
  font-weight: 500;
}
.footer-book:hover { color: #FAF7F2; }

/* Bottom bar */
.footer-bottom {
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (min-width: 680px) {
  .footer-bottom {
    padding: 18px 40px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .footer-bottom { padding: 18px 72px; }
}
.footer-bottom span {
  font-size: 11px;
  color: rgba(255,255,255,.25);
  line-height: 1.6;
}
.footer-bottom a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: #C9B08A; }