/* ==========================================================================
   MILO STORIES — Design System
   Concept: "the storybook atlas" — a hyperlocal picture-book brand told
   through the language of maps, routes and wayfinding. Navy ink on warm
   paper, a compass-gold accent for routes and actions, brick-red used
   sparingly as a rare highlight (sold-out badges, key stats).
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,340;0,9..144,440;0,9..144,560;0,9..144,650;1,9..144,440;1,9..144,560&family=Inter:wght@400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root{
  --paper:      #FAF5EA;
  --paper-alt:  #F1E9D6;
  --card:       #FFFFFF;
  --navy:       #1C2A3F;
  --navy-2:     #26374F;
  --ink:        #23324A;
  --ink-soft:   #55637A;
  --gold:       #CC9A3A;
  --gold-deep:  #A97B24;
  --gold-soft:  #EFDFB8;
  --brick:      #B75340;
  --green:      #5E7F5E;
  --line:       #E3D9C0;
  --line-dark:  rgba(28,42,63,0.14);

  --f-display: 'Fraunces', 'Iowan Old Style', serif;
  --f-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    'Space Mono', 'SF Mono', monospace;

  --radius-s:  10px;
  --radius-m:  16px;
  --radius-l:  26px;
  --shadow-s:  0 2px 10px rgba(28,42,63,0.06);
  --shadow-m:  0 10px 30px rgba(28,42,63,0.10);
  --shadow-l:  0 24px 60px rgba(28,42,63,0.16);

  --w-content: 1180px;
  --w-narrow: 760px;
}

*, *::before, *::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:var(--f-body);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family:var(--f-display); font-weight:560; margin:0; color:var(--navy); letter-spacing:-0.01em; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
input, textarea, select{ font-family:inherit; font-size:1rem; }

:focus-visible{
  outline:2.5px solid var(--gold-deep);
  outline-offset:3px;
  border-radius:4px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

h1, .h1{ font-size:clamp(2.4rem, 4.6vw, 4.1rem); line-height:1.06; }
h2, .h2{ font-size:clamp(1.9rem, 3vw, 2.7rem); line-height:1.12; }
h3, .h3{ font-size:1.35rem; line-height:1.25; font-weight:560; }
.lede{ font-size:clamp(1.05rem, 1.6vw, 1.28rem); color:var(--ink-soft); line-height:1.6; }
.eyebrow{
  font-family:var(--f-mono);
  font-size:0.76rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold-deep);
  display:inline-flex;
  align-items:center;
  gap:0.55em;
}
.eyebrow::before{
  content:"";
  width:7px; height:7px;
  border-radius:50%;
  background:var(--gold);
  display:inline-block;
}
.stat-number{
  font-family:var(--f-display);
  font-weight:650;
  font-style:italic;
}

.wrap{ max-width:var(--w-content); margin:0 auto; padding:0 28px; }
.wrap-narrow{ max-width:var(--w-narrow); margin:0 auto; padding:0 28px; }
section{ padding:96px 0; }
section.tight{ padding:64px 0; }
.section-head{ max-width:640px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.stack-16 > * + *{ margin-top:16px; }
.stack-24 > * + *{ margin-top:24px; }

.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:32px; }
.grid-3{ display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; }
@media (max-width:900px){
  .grid-2{ grid-template-columns:1fr; }
  .grid-3{ grid-template-columns:1fr; }
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:14px 26px;
  border-radius:999px;
  font-weight:600;
  font-size:0.98rem;
  border:1.5px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-1px); }
.btn svg{ width:15px; height:15px; transition:transform .18s ease; }
.btn:hover svg{ transform:translateX(3px); }

.btn-primary{ background:var(--navy); color:var(--paper); box-shadow:var(--shadow-s); }
.btn-primary:hover{ background:var(--navy-2); box-shadow:var(--shadow-m); }

.btn-gold{ background:var(--gold); color:var(--navy); box-shadow:var(--shadow-s); }
.btn-gold:hover{ background:var(--gold-deep); color:var(--paper); }

.btn-ghost{ background:transparent; color:var(--navy); border-color:var(--line-dark); }
.btn-ghost:hover{ border-color:var(--navy); background:rgba(28,42,63,0.04); }

.btn-ghost-light{ background:transparent; color:var(--paper); border-color:rgba(250,245,234,0.35); }
.btn-ghost-light:hover{ border-color:var(--paper); background:rgba(250,245,234,0.08); }

.btn-block{ display:flex; justify-content:center; width:100%; }

/* ==========================================================================
   NAVBAR — robuust, één breekpunt, geen overlap mogelijk
   ========================================================================== */
.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(250,245,234,0.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line-dark);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 0;
}
.brand{
  display:flex; align-items:center; gap:10px;
  font-family:var(--f-display); font-weight:650; font-size:1.2rem; color:var(--navy);
  flex-shrink:0;
}
.brand-mark{ width:28px; height:28px; flex-shrink:0; }

.nav-links{
  display:flex; align-items:center; gap:26px;
  flex-wrap:nowrap; min-width:0;
}
.nav-links a{
  font-size:0.92rem; font-weight:500; color:var(--ink-soft);
  white-space:nowrap;
  position:relative; padding:6px 0;
  transition:color .15s ease;
}
.nav-links a:hover{ color:var(--navy); }
.nav-links a.active{ color:var(--navy); font-weight:600; }
.nav-links a.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-2px; height:2px;
  background:var(--gold);
}

.nav-cta{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.nav-cta .btn{ white-space:nowrap; }

.nav-toggle{
  display:none; background:none; border:none; padding:8px; color:var(--navy);
  flex-shrink:0;
}
.nav-toggle svg{ width:24px; height:24px; }

/* Eén duidelijk breekpunt: onder 1100px verdwijnt de inline nav volledig
   uit de flow (display:none), zodat er nooit overlap of samendrukken
   kan ontstaan — daarna alleen het hamburgermenu als volledige dropdown. */
@media (max-width:1100px){
  .nav-links{
    display:none;
    position:fixed;
    inset:70px 0 auto 0;
    background:var(--paper);
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:8px 28px 24px;
    border-bottom:1px solid var(--line-dark);
    box-shadow:var(--shadow-m);
    max-height:calc(100vh - 70px);
    overflow-y:auto;
  }
  .nav-links.open{ display:flex; }
  .nav-links a{ width:100%; padding:14px 0; border-bottom:1px solid var(--line); }
  .nav-cta .btn-primary{ display:none; }
  .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:inline-flex; }
}

@media (max-width:480px){
  .nav-cta{ gap:8px; }
}

.site-footer{ background:var(--navy); color:rgba(250,245,234,0.72); padding:72px 0 28px; }
.footer-top{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:52px; border-bottom:1px solid rgba(250,245,234,0.14); }
.footer-brand{ color:var(--paper); }
.footer-brand .brand{ color:var(--paper); margin-bottom:14px; }
.footer-brand p{ max-width:280px; color:rgba(250,245,234,0.6); font-size:0.95rem; }
.footer-col h4{ color:var(--paper); font-family:var(--f-mono); font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; font-weight:600; margin-bottom:16px; }
.footer-col ul li + li{ margin-top:11px; }
.footer-col a{ font-size:0.94rem; transition:color .15s ease; }
.footer-col a:hover{ color:var(--gold); }
.footer-details{ border-top:1px solid rgba(250,245,234,0.14); padding-top:10px; }
.footer-details + .footer-details{ margin-top:10px; }
.footer-details summary{ list-style:none; cursor:pointer; color:var(--paper); font-size:0.94rem; font-weight:600; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.footer-details summary::-webkit-details-marker{ display:none; }
.footer-details summary::after{ content:"+"; color:var(--gold); font-size:1rem; line-height:1; }
.footer-details[open] summary::after{ content:"–"; }
.footer-panel{ margin-top:10px; color:rgba(250,245,234,0.78); font-size:0.9rem; line-height:1.6; }
.footer-panel p + p{ margin-top:8px; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:26px; font-size:0.85rem; color:rgba(250,245,234,0.45); flex-wrap:wrap; gap:10px; }
@media (max-width:900px){
  .footer-top{ grid-template-columns:1fr 1fr; }
  .footer-brand{ grid-column:1 / -1; }
}

.hero{ padding:64px 0 40px; position:relative; overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr 0.95fr; gap:56px; align-items:center; }
@media (max-width:980px){ .hero-grid{ grid-template-columns:1fr; } }
.hero-badges{ display:flex; gap:10px; flex-wrap:wrap; margin-top:26px; }
.pill-stat{
  display:inline-flex; align-items:center; gap:8px;
  background:var(--card); border:1px solid var(--line);
  padding:9px 16px; border-radius:999px; font-size:0.85rem; color:var(--ink-soft);
  box-shadow:var(--shadow-s);
}
.pill-stat b{ color:var(--navy); font-family:var(--f-mono); }

.hero-actions{ display:flex; gap:14px; margin-top:34px; flex-wrap:wrap; }

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-m);
  box-shadow:var(--shadow-s);
  transition:transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-m); }

.value-card{ padding:34px 30px; }
.value-card .icon{ width:42px; height:42px; margin-bottom:20px; color:var(--gold-deep); }
.value-card h3{ margin-bottom:10px; }
.value-card p{ color:var(--ink-soft); font-size:0.98rem; }

.track-card{ padding:0; overflow:hidden; display:flex; flex-direction:column; }
.track-card .track-media{
  height:220px; background:var(--paper-alt);
  display:flex; align-items:center; justify-content:center;
  border-bottom:1px solid var(--line);
}
.track-card .track-body{ padding:30px; }
.track-card h3{ margin-bottom:10px; }
.track-card p{ color:var(--ink-soft); font-size:0.98rem; margin-bottom:20px; }

.city-card{ overflow:hidden; display:flex; flex-direction:column; }
.city-media{
  height:200px; position:relative;
  background:linear-gradient(160deg, var(--navy-2), var(--navy));
  display:flex; align-items:flex-end; padding:18px;
  overflow:hidden;
}
.city-media::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,19,34,0.12), rgba(8,19,34,0.45));
  pointer-events:none;
}
.city-media img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover; object-position:center;
}
.city-media svg{ position:absolute; inset:0; width:100%; height:100%; opacity:0.5; z-index:0; }
.city-media .city-name-overlay{ position:relative; z-index:1; color:var(--paper); font-family:var(--f-display); font-size:1.5rem; font-weight:560; text-shadow:0 2px 12px rgba(0,0,0,0.35); }
.city-body{ padding:26px 26px 28px; display:flex; flex-direction:column; gap:14px; flex:1; }
.badge{
  display:inline-flex; align-items:center; gap:6px;
  font-family:var(--f-mono); font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase;
  padding:5px 11px; border-radius:999px; width:fit-content;
}
.badge-available{ background:#E7EFE3; color:var(--green); }
.badge-soon{ background:var(--gold-soft); color:var(--gold-deep); }
.city-body p{ color:var(--ink-soft); font-size:0.95rem; flex:1; }
.city-link{ font-weight:600; font-size:0.93rem; display:inline-flex; align-items:center; gap:6px; color:var(--navy); }
.city-link svg{ width:14px; height:14px; }

.stat-hero{
  background:var(--navy); color:var(--paper);
  border-radius:var(--radius-l);
  padding:64px 48px; text-align:center;
  position:relative; overflow:hidden;
}
.stat-hero .stat-number{ font-size:clamp(3.4rem, 8vw, 6rem); color:var(--gold); display:block; line-height:1; }
.stat-hero p{ color:rgba(250,245,234,0.7); max-width:480px; margin:14px auto 0; }

.steps{ display:grid; grid-template-columns:repeat(4, 1fr); gap:24px; }
@media (max-width:980px){ .steps{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .steps{ grid-template-columns:1fr; } }
.step{ position:relative; padding-top:14px; border-top:2px solid var(--line); }
.step-index{ font-family:var(--f-mono); color:var(--gold-deep); font-size:0.85rem; }
.step h3{ margin:10px 0 8px; font-size:1.12rem; }
.step p{ color:var(--ink-soft); font-size:0.93rem; }

.audience-card{ padding:32px 28px; border-top:3px solid var(--gold); }
.audience-card h3{ margin-bottom:10px; }
.audience-card p{ color:var(--ink-soft); font-size:0.96rem; }

.checklist{ display:grid; grid-template-columns:1fr 1fr; gap:16px 28px; }
@media (max-width:700px){ .checklist{ grid-template-columns:1fr; } }
.check-item{ display:flex; gap:12px; align-items:flex-start; }
.check-item svg{ width:20px; height:20px; color:var(--green); flex-shrink:0; margin-top:2px; }
.check-item div b{ display:block; color:var(--navy); margin-bottom:2px; font-size:0.98rem; }
.check-item div span{ color:var(--ink-soft); font-size:0.92rem; }

.faq-item{ border-bottom:1px solid var(--line); padding:22px 0; }
.faq-item summary{ cursor:pointer; font-family:var(--f-display); font-size:1.08rem; font-weight:560; color:var(--navy); list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary .plus{ font-family:var(--f-mono); color:var(--gold-deep); font-size:1.3rem; flex-shrink:0; transition:transform .2s ease; }
.faq-item[open] summary .plus{ transform:rotate(45deg); }
.faq-item p{ color:var(--ink-soft); margin-top:12px; font-size:0.96rem; max-width:640px; }

.case-block{ background:var(--paper-alt); border-radius:var(--radius-l); padding:52px; }
.case-block .case-label{ font-family:var(--f-mono); font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-deep); }
.case-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; margin-top:32px; }
@media (max-width:900px){ .case-grid{ grid-template-columns:1fr; } }
.case-grid h4{ font-family:var(--f-mono); font-size:0.8rem; text-transform:uppercase; letter-spacing:0.06em; color:var(--ink-soft); margin-bottom:10px; font-weight:600; }
.case-grid p{ font-size:0.98rem; color:var(--ink); }

.logo-row{ display:flex; align-items:center; gap:44px; flex-wrap:wrap; justify-content:center; opacity:0.75; }
.logo-chip{
  font-family:var(--f-display); font-style:italic; font-size:1.15rem; color:var(--ink-soft);
  padding:10px 18px; border:1px dashed var(--line-dark); border-radius:10px;
}

.cta-banner{
  background:var(--navy); color:var(--paper);
  border-radius:var(--radius-l);
  padding:64px 48px;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.cta-banner h2{ color:var(--paper); }
.cta-banner p{ color:rgba(250,245,234,0.68); max-width:520px; margin:14px auto 0; }
.cta-banner .hero-actions{ justify-content:center; margin-top:30px; }

.form-card{ background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m); padding:40px; box-shadow:var(--shadow-s); }
.field{ display:flex; flex-direction:column; gap:8px; margin-bottom:20px; }
.field label{ font-size:0.88rem; font-weight:600; color:var(--navy); }
.field input, .field select, .field textarea{
  border:1.5px solid var(--line-dark); border-radius:var(--radius-s);
  padding:13px 15px; background:var(--paper); color:var(--ink);
  transition:border-color .15s ease; width:100%;
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--gold-deep); outline:none; }
.field textarea{ resize:vertical; min-height:120px; }

.contact-side{ display:flex; flex-direction:column; gap:28px; }
.contact-info-item{ display:flex; gap:14px; align-items:flex-start; }
.contact-info-item svg{ width:20px; height:20px; color:var(--gold-deep); margin-top:3px; flex-shrink:0; }
.contact-info-item b{ display:block; color:var(--navy); margin-bottom:2px; }
.contact-info-item span{ color:var(--ink-soft); font-size:0.94rem; }

.route-tiles{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media (max-width:800px){ .route-tiles{ grid-template-columns:1fr; } }
.route-tile{ padding:26px; text-align:center; }
.route-tile svg{ width:30px; height:30px; margin:0 auto 14px; color:var(--gold-deep); }
.route-tile h3{ font-size:1.05rem; margin-bottom:6px; }
.route-tile p{ font-size:0.9rem; color:var(--ink-soft); margin-bottom:16px; }

.page-hero{ padding:60px 0 20px; }
.page-hero .eyebrow{ margin-bottom:18px; }
.page-hero h1{ max-width:760px; }
.page-hero .lede{ max-width:560px; margin-top:18px; }

.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.divider-line{ height:1px; background:var(--line); border:none; margin:0; }
.bleed-alt{ background:var(--paper-alt); }
.reveal{ opacity:0; transform:translateY(14px); transition:opacity .6s ease, transform .6s ease; }
.reveal.in{ opacity:1; transform:none; }

.form-note{ font-size:0.86rem; color:var(--ink-soft); margin-top:14px; }

/* ==========================================================================
   ADDITIONS — Milo Stories v2 (Boeken + Ansichtkaarten/Souvenirs + Winkels/VVV)
   ========================================================================== */

/* product grid: books & souvenirs, ready for Shopify Buy Buttons */
.product-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:22px; }
@media (max-width:1040px){ .product-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){ .product-grid{ grid-template-columns:1fr; } }

.product-card{
  background:var(--card); border:1px solid var(--line); border-radius:var(--radius-m);
  overflow:hidden; display:flex; flex-direction:column; box-shadow:var(--shadow-s);
  transition:transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-m); }
.product-media{
  height:160px; background:var(--paper-alt); border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:center; position:relative;
}
.product-media svg{ width:56px; height:56px; color:var(--gold-deep); opacity:0.85; }
.product-body{ padding:20px; display:flex; flex-direction:column; gap:10px; flex:1; }
.product-body h4{ font-family:var(--f-display); font-size:1.05rem; font-weight:560; color:var(--navy); }
.product-body p{ font-size:0.87rem; color:var(--ink-soft); flex:1; }
.price-tag{ font-family:var(--f-mono); font-size:0.92rem; color:var(--navy); font-weight:700; }

/* Shopify placeholder button — visually flagged as an integration point */
.shopify-btn{
  display:flex; align-items:center; justify-content:center; gap:8px;
  padding:11px 16px; border-radius:999px;
  border:1.5px dashed var(--gold-deep);
  background:var(--gold-soft);
  color:var(--gold-deep);
  font-size:0.84rem; font-weight:700;
  font-family:var(--f-mono); letter-spacing:0.02em;
  cursor:not-allowed;
  width:100%;
}
.shopify-btn svg{ width:15px; height:15px; }
.shopify-note{
  font-family:var(--f-mono); font-size:0.68rem; letter-spacing:0.04em; color:var(--ink-soft);
  text-align:center; margin-top:2px; text-transform:uppercase;
}

/* stockist / VVV audience cards reuse .audience-card, extra icon slot */
.audience-card .icon{ width:34px; height:34px; color:var(--gold-deep); margin-bottom:16px; }

/* wholesale price note strip */
.info-strip{
  display:flex; gap:14px; align-items:flex-start;
  background:var(--paper-alt); border:1px solid var(--line);
  border-radius:var(--radius-m); padding:22px 24px;
}
.info-strip svg{ width:22px; height:22px; color:var(--gold-deep); flex-shrink:0; margin-top:2px; }
.info-strip p{ font-size:0.94rem; color:var(--ink-soft); }
.info-strip b{ color:var(--navy); }

/* small tag for city status variants */
.badge-prep{ background:var(--gold-soft); color:var(--gold-deep); }
