/* ============================================
   VANSTERDAM TOURS — tours.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, .nav-active { color: var(--gold) !important; }
.nav-links a:hover::after, .nav-active::after { width: 100% !important; }
.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; } }


/* ── PAGE HERO ── */
.page-hero {
  padding: calc(64px + 56px) var(--px) 56px;
  background: linear-gradient(155deg, var(--cream) 0%, #F5EDDA 60%, #EDE0C6 100%);
  position: relative; overflow: hidden;
}
.page-hero-wm {
  position: absolute; right: -2vw; top: 50%; transform: translateY(-50%);
  font-size: clamp(6rem, 22vw, 18rem); font-weight: 700;
  color: rgba(184,146,60,.05); letter-spacing: -.02em;
  pointer-events: none; user-select: none; line-height: 1;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 640px; }

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

.page-hero h1 {
  font-size: clamp(2.2rem, 7vw, 4.4rem); font-weight: 600; line-height: 1.1;
  letter-spacing: -.03em; color: var(--char); margin-bottom: 16px;
}
.page-hero h1 span { color: var(--gold); font-weight: 400; }

.page-hero-sub {
  font-size: clamp(.9rem, 1.8vw, 1.05rem); font-weight: 300;
  color: var(--dusk); line-height: 1.75; max-width: 500px;
}


/* ── PAYMENT BANNER ── */
.payment-bar {
  background: var(--char);
  padding: 20px var(--px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0;
}
.payment-bar-label {
  font-size: .64rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--warm); margin-right: 28px; white-space: nowrap;
}
.payment-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  color: var(--cream); font-size: .72rem; font-weight: 500; letter-spacing: .08em;
  padding: 6px 16px; border-radius: 20px;
}
@media (max-width: 480px) {
  .payment-bar-label { width: 100%; text-align: center; margin-right: 0; margin-bottom: 12px; }
}


/* ── TOURS SECTION ── */
.tours-section { padding: var(--py) var(--px); }

.tour-block {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 60px);
  padding-bottom: clamp(56px, 8vw, 96px);
  border-bottom: 1px solid var(--linen);
  margin-bottom: clamp(56px, 8vw, 96px);
}
.tour-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

@media (min-width: 860px) {
  .tour-block { grid-template-columns: 1fr 1fr; align-items: start; }
  .tour-block--flip .tour-img-col { order: 2; }
  .tour-block--flip .tour-text-col { order: 1; }
}


/* ── IMAGE COL ── */
.tour-img-col { position: relative; }

.tour-img-main {
  width: 100%;
  height: 280px;
  border-radius: 6px; overflow: hidden; position: relative;
}
@media (min-width: 480px)  { .tour-img-main { height: 340px; } }
@media (min-width: 860px)  { .tour-img-main { height: 500px; } }
@media (min-width: 1100px) { .tour-img-main { height: 560px; } }

/* Image placeholders */
.ph-heritage { background: linear-gradient(145deg, #C8A870 0%, #7A5420 45%, #3A2808 100%); }
.ph-cooking  { background: linear-gradient(145deg, #D48060 0%, #8E4020 45%, #502010 100%); }
.ph-cannabis { background: linear-gradient(145deg, #86AD76 0%, #436834 45%, #1E3A14 100%); }

.tour-img-main img {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; object-fit: cover; z-index: 1;
}

/* Price badge on image */
.tour-img-badge {
  position: absolute; bottom: -20px; right: 20px;
  background: var(--char); color: var(--gold-hi);
  padding: 14px 20px; border-radius: 4px;
  box-shadow: 0 8px 32px rgba(28,24,20,.28);
  z-index: 2; text-align: center;
}
.tour-img-badge strong { display: block; font-size: 1.5rem; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.tour-img-badge span   { display: block; font-size: .6rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: var(--warm); margin-top: 3px; }


/* ── TEXT COL ── */
.tour-text-col { padding-top: clamp(28px, 4vw, 16px); }

.tour-num {
  font-size: clamp(3rem, 8vw, 5rem); font-weight: 700;
  color: var(--gold-pale); letter-spacing: -.04em; line-height: 1;
  margin-bottom: 10px; display: block;
}

.tour-label {
  font-size: .68rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.tour-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0; }

.tour-heading-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 6px;
}

.tour-text-col h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; line-height: 1.1;
  letter-spacing: -.03em; color: var(--char);
}
.tour-text-col h2 span { color: var(--gold); font-weight: 400; }

.tour-meta {
  font-size: .74rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--warm); margin-bottom: 20px; display: block; line-height: 1.6;
}

.age-badge {
  display: inline-flex; align-items: center;
  background: var(--char); color: var(--cream);
  font-size: .66rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; flex-shrink: 0;
}

.tour-desc {
  font-size: clamp(.88rem, 1.6vw, .97rem); font-weight: 400;
  color: var(--dusk); line-height: 1.85; margin-bottom: 26px;
}

/* Includes */
.includes-title {
  font-size: .66rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--char); margin-bottom: 14px; display: block;
}
.includes-list {
  list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px;
}
.includes-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: .88rem; font-weight: 400; color: var(--dusk); line-height: 1.5;
}
.includes-list li::before {
  content: '';
  width: 18px; height: 18px; border-radius: 50%;
  background-color: var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%231C1814' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 10px;
  flex-shrink: 0; margin-top: 1px;
}

/* Chai callout */
.chai-callout {
  background: var(--parchment); border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0; padding: 18px 20px; margin-bottom: 28px;
}
.chai-callout strong {
  display: block; font-size: .7rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 7px;
}
.chai-callout p { font-size: .88rem; font-weight: 400; color: var(--dusk); line-height: 1.75; }

/* Price + CTA */
.tour-cta-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding-top: 24px; border-top: 1px solid var(--linen);
}
.tour-price {
  font-size: clamp(1.6rem, 4vw, 2.2rem); font-weight: 700;
  color: var(--char); letter-spacing: -.03em; line-height: 1;
}
.tour-price span {
  font-size: .68rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: var(--warm); margin-left: 4px;
}
.btn-book {
  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 28px; border-radius: 3px;
  transition: background .3s, transform .2s; white-space: nowrap;
}
.btn-book:hover { background: var(--gold); color: var(--char); transform: translateY(-2px); }


/* ── FOOTER ── */
.footer { background-color: #1C1814; font-family: var(--f); color: #C9B08A; }

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

.footer-logo { height: 28px; width: auto; display: block; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .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; transition: color .2s; }
.footer-ig:hover { color: #FAF7F2; }

.footer-col-heading { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: #FAF7F2; margin-bottom: 16px; display: block; }
.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; }
.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-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; }


/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }