@font-face {
  font-family: 'Bright Marching';
  src: url('fonts/BrightMarching-Regular.woff2') format('woff2'),
       url('fonts/BrightMarching-Regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}

:root {
  --red-velvet: #7F2137;
  --red-velvet-dark: #6A1A2D;
  --butter: #F0E0BE;
  --butter-light: #F7ECD2;
  --chocolate: #3D1F14;
  --powder-blue: #C9D9E5;
  --font-display: 'Bright Marching', 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Adelle Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, sans-serif;
  --max-w: 1240px;
  --pad-x: clamp(20px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 200;
  color: var(--chocolate);
  background: var(--butter-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0.005em;
  margin: 0 0 0.4em;
  /* Bright Marching: alleen kleine letters */
  text-transform: lowercase;
}
h2, h3 {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 0.5em;
}
strong, b { font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
  opacity: 0.85;
}
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background 0.3s ease, padding 0.3s ease;
}
.nav.scrolled {
  background: rgba(127, 33, 55, 0.96);
  backdrop-filter: blur(6px);
  padding: 12px var(--pad-x);
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__brand img { height: 38px; width: auto; }
.nav__links { display: flex; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  font-family: var(--font-body);
  color: var(--butter);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 1px; background: var(--butter);
  transition: width 0.3s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__menu-btn { display: none; background: transparent; border: 0; color: var(--butter); font-size: 1.4rem; cursor: pointer; }
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__menu-btn { display: block; }
  .nav__links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--red-velvet);
    padding: 24px var(--pad-x); gap: 18px;
  }
  .nav__brand img { height: 32px; }
}

/* HERO */
.hero {
  position: relative;
  background: var(--red-velvet);
  color: var(--butter);
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 140px var(--pad-x) 100px;
  text-align: center;
  overflow: hidden;
}
.hero__deco { position: absolute; pointer-events: none; opacity: 0.10; z-index: 1; }
.hero__deco--left { left: -60px; top: 12%; width: 320px; transform: rotate(-14deg); }
.hero__deco--right { right: -80px; bottom: 8%; width: 360px; transform: rotate(16deg); }
@media (max-width: 820px) {
  .hero__deco--left { width: 200px; left: -80px; top: 8%; }
  .hero__deco--right { width: 220px; right: -80px; bottom: 6%; }
}
.hero__logo { width: min(72vw, 680px); margin: 0 auto 32px; position: relative; z-index: 2; }
.hero__logo img { width: 100%; height: auto; }
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.4vw, 4.6rem);
  color: var(--butter);
  max-width: 18ch;
  margin: 0 auto 24px;
  line-height: 1.05;
  position: relative; z-index: 2;
}
.hero__sub {
  max-width: 44ch; margin: 0 auto;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 200;
  line-height: 1.6;
  color: var(--butter);
  opacity: 0.9;
  position: relative; z-index: 2;
}
.hero__cta { margin-top: 44px; display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 2; }
@media (max-width: 820px) { .hero { min-height: auto; padding: 130px var(--pad-x) 80px; } }

/* BTN */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  background: transparent;
  color: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn--solid { background: var(--butter); color: var(--red-velvet); border-color: var(--butter); }
.btn--solid:hover { background: #f9ecca; }
.btn--outline-light { color: var(--butter); }
.btn--outline-light:hover { background: var(--butter); color: var(--red-velvet); }
.btn--outline-dark { color: var(--red-velvet); }
.btn--outline-dark:hover { background: var(--red-velvet); color: var(--butter); }

/* MARQUEE */
.marquee {
  background: var(--butter);
  color: var(--red-velvet);
  overflow: hidden;
  border-top: 1px solid rgba(127, 33, 55, 0.15);
  border-bottom: 1px solid rgba(127, 33, 55, 0.15);
  padding: 18px 0;
}
.marquee__track {
  display: flex; gap: 60px; white-space: nowrap;
  animation: scroll 28s linear infinite;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__dot { width: 6px; height: 6px; background: var(--red-velvet); border-radius: 50%; display: inline-block; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
section.block { padding: clamp(80px, 11vw, 140px) 0; }
.block--cream { background: var(--butter-light); color: var(--chocolate); }
.block--butter { background: var(--butter); color: var(--chocolate); }
.block--red { background: var(--red-velvet); color: var(--butter); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
@media (max-width: 820px) { .grid-2 { grid-template-columns: 1fr; gap: 40px; } }

/* VERHAAL */
#verhaal h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); color: var(--red-velvet); max-width: 16ch; }
#verhaal .lead { font-size: 1.15rem; font-weight: 300; margin-bottom: 1.4em; }
#verhaal p { max-width: 56ch; margin: 0 0 1em; }
#verhaal .signature {
  margin-top: 2.2em;
  font-family: var(--font-body);
  font-weight: 400;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--red-velvet);
}
.portrait { aspect-ratio: 4 / 5; background: var(--red-velvet); border-radius: 6px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* KOEKEN */
#koeken { text-align: center; }
#koeken h2 { font-size: clamp(2.2rem, 4.8vw, 4rem); color: var(--butter); font-weight: 300; max-width: 22ch; margin: 0 auto 0.4em; }
#koeken .intro { max-width: 46ch; margin: 0 auto 70px; color: var(--butter); opacity: 0.92; }
.cookies { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
@media (max-width: 1000px) { .cookies { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cookies { grid-template-columns: 1fr; } }
.cookie {
  background: var(--butter); color: var(--red-velvet);
  border-radius: 4px;
  padding: 36px 26px 32px;
  text-align: left;
  display: flex; flex-direction: column;
  transition: transform 0.4s ease;
}
.cookie:hover { transform: translateY(-6px); }
.cookie__img { aspect-ratio: 1 / 1.1; margin: -8px -8px 18px; display: flex; align-items: center; justify-content: center; overflow: hidden; background: var(--butter-light); }
.cookie__img img { width: 100%; height: 100%; object-fit: cover; }
.cookie h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 0.4em;
  color: var(--red-velvet);
  letter-spacing: -0.01em;
}
.cookie p { font-size: 0.95rem; font-weight: 200; margin: 0 0 1.4em; color: var(--chocolate); flex: 1; line-height: 1.5; }
.cookie__price { font-family: var(--font-body); font-weight: 500; font-size: 1.3rem; color: var(--red-velvet); letter-spacing: -0.01em; }
.cookie__price small {
  font-weight: 400; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  display: block; margin-top: 4px; color: var(--chocolate); opacity: 0.55;
}
.cookies-footer { margin-top: 60px; color: var(--butter); opacity: 0.85; font-size: 0.95rem; }

/* KOFFIE */
#koffie .eyebrow { color: var(--red-velvet); }
#koffie h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); color: var(--red-velvet); font-weight: 300; }
#koffie p { max-width: 50ch; margin: 0 0 1em; }
.coffee-art { aspect-ratio: 4 / 5; background: var(--butter); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.coffee-art img { width: 100%; height: 100%; object-fit: cover; }
.pricelist { margin-top: 28px; border-top: 1px solid rgba(127, 33, 55, 0.18); padding-top: 24px; columns: 2; column-gap: 40px; padding-left: 0; list-style: none; }
.pricelist li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dotted rgba(127, 33, 55, 0.2); break-inside: avoid; font-size: 0.95rem; }
.pricelist li span:last-child { font-weight: 500; color: var(--red-velvet); }

/* GALERIJ */
#galerij { background: var(--butter); overflow: hidden; position: relative; }
#galerij .header { text-align: center; margin-bottom: 70px; }
#galerij h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); color: var(--red-velvet); font-weight: 300; max-width: 20ch; margin: 0 auto 0.3em; }
#galerij .header p { max-width: 42ch; margin: 0 auto; color: var(--chocolate); opacity: 0.85; }
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 50px 32px; padding: 10px 10px 30px; max-width: 1100px; margin: 0 auto; }
.polaroid {
  background: var(--butter-light);
  padding: 18px 18px 58px;
  box-shadow: 0 1px 2px rgba(61,31,20,0.08), 0 14px 36px -8px rgba(61,31,20,0.22);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.polaroid:hover {
  transform: rotate(0deg) translateY(-6px) !important;
  box-shadow: 0 1px 2px rgba(61,31,20,0.1), 0 22px 48px -10px rgba(61,31,20,0.3);
  z-index: 2;
}
.polaroid__img { background: var(--butter-light); width: 100%; aspect-ratio: 3 / 4; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.polaroid--tall .polaroid__img { aspect-ratio: 2 / 3; }
.polaroid__img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; transition: transform 0.6s ease; }
.polaroid:hover .polaroid__img img { transform: scale(1.04); }
.polaroid__caption {
  position: absolute; bottom: 16px; left: 18px; right: 18px;
  font-family: var(--font-body); font-weight: 400; font-style: italic;
  font-size: 1rem; color: var(--red-velvet); line-height: 1.1;
}
.polaroid__caption small {
  display: block;
  font-family: var(--font-body); font-style: normal;
  font-weight: 400; font-size: 0.62rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--chocolate); opacity: 0.55; margin-top: 6px;
}
.polaroid::before {
  content: ""; position: absolute; top: -10px;
  width: 70px; height: 22px;
  background: rgba(201,217,229,0.7);
}
.polaroid:nth-child(odd)::before { left: 20px; transform: rotate(-6deg); }
.polaroid:nth-child(even)::before { right: 20px; transform: rotate(8deg); background: rgba(127,33,55,0.18); }
.polaroid:nth-child(3n)::before { left: 50%; transform: translateX(-50%) rotate(2deg); background: rgba(240,224,190,0.9); width: 90px; }
.polaroid--1 { grid-column: span 4; transform: rotate(-2.5deg); margin-top: 20px; }
.polaroid--2 { grid-column: span 4; transform: rotate(1.8deg); margin-top: 60px; }
.polaroid--3 { grid-column: span 4; transform: rotate(-1.2deg); margin-top: 0; }
.polaroid--4 { grid-column: span 4; transform: rotate(2.3deg); margin-top: 40px; }
.polaroid--5 { grid-column: span 4; transform: rotate(-2.8deg); margin-top: 0; }
.polaroid--6 { grid-column: span 4; transform: rotate(1.4deg); margin-top: 50px; }
.gallery-cta { text-align: center; margin-top: 70px; }
@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .polaroid--1, .polaroid--2, .polaroid--3, .polaroid--4, .polaroid--5, .polaroid--6 {
    grid-column: span 1;
  }
  .polaroid:nth-child(odd) { margin-top: 0; }
  .polaroid:nth-child(even) { margin-top: 40px; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; gap: 36px; }
  .polaroid { grid-column: 1 !important; margin-top: 0 !important; max-width: 84%; }
  .polaroid:nth-child(odd) { margin-left: auto !important; transform: rotate(-1.6deg); }
  .polaroid:nth-child(even) { margin-right: auto !important; transform: rotate(1.6deg); }
}

/* LOCATIE */
#locatie { text-align: center; }
#locatie h2 { font-size: clamp(2.2rem, 5vw, 4rem); color: var(--butter); font-weight: 300; max-width: 22ch; margin: 0 auto 0.4em; }
#locatie .sub { color: var(--butter); opacity: 0.85; max-width: 38ch; margin: 0 auto 56px; }
.location-grid { display: grid; grid-template-columns: 1fr; gap: 48px; text-align: left; align-items: stretch; max-width: 560px; margin: 0 auto; }
.location-card { background: var(--butter); color: var(--chocolate); padding: 48px 42px; border-radius: 4px; text-align: center; }
.location-card .hours-table { text-align: left; }
.location-card h3 { color: var(--red-velvet); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.5em; }
.location-card .address { font-size: 1.1rem; margin: 0 0 1em; line-height: 1.4; }
.hours-label {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red-velvet); margin: 22px 0 10px; font-weight: 500;
}
.hours-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours-table td { padding: 8px 0; border-bottom: 1px dotted rgba(127,33,55,0.2); font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; font-weight: 500; color: var(--red-velvet); }
.hours-table tr:last-child td { border-bottom: 0; }
.map-embed { background: var(--butter); border-radius: 4px; overflow: hidden; min-height: 380px; position: relative; }
.map-embed iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }

/* BESTELLEN */
#bestellen .grid-2 { gap: clamp(40px, 7vw, 110px); }
#bestellen .eyebrow { color: var(--red-velvet); }
#bestellen h2 { font-size: clamp(2.2rem, 4.6vw, 3.8rem); color: var(--red-velvet); font-weight: 300; }
#bestellen p { max-width: 52ch; }
.order-art { aspect-ratio: 1 / 1; background: var(--red-velvet); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.order-art img { width: 100%; height: 100%; object-fit: cover; }

/* CONTACT */
#contact { background: var(--butter); }
#contact .container { max-width: 760px; }
#contact .eyebrow { color: var(--red-velvet); }
#contact h2 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); color: var(--red-velvet); text-align: center; font-weight: 300; margin-bottom: 0.4em; }
#contact .sub { text-align: center; max-width: 50ch; margin: 0 auto 50px; }
form.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
form.contact .full { grid-column: 1 / -1; }
form.contact label {
  display: block; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  margin-bottom: 8px; color: var(--red-velvet);
}
form.contact input, form.contact textarea, form.contact select {
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid rgba(127,33,55,0.35);
  padding: 10px 0 14px;
  font-family: var(--font-body); font-weight: 200; font-size: 1rem;
  color: var(--chocolate); transition: border-color 0.2s ease;
}
form.contact textarea { resize: vertical; min-height: 120px; }
form.contact input:focus, form.contact textarea:focus, form.contact select:focus { outline: 0; border-bottom-color: var(--red-velvet); }
form.contact button { justify-self: start; margin-top: 10px; }
@media (max-width: 600px) { form.contact { grid-template-columns: 1fr; } }

/* FOOTER */
footer.site { background: var(--red-velvet-dark); color: var(--butter); padding: 70px 0 30px; }
footer.site .grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; margin-bottom: 50px; align-items: start; }
@media (max-width: 720px) { footer.site .grid { grid-template-columns: 1fr; gap: 30px; } }
footer.site h4 {
  font-family: var(--font-body); font-size: 0.72rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  margin: 0 0 18px; opacity: 0.7; font-weight: 500;
}
footer.site .footer-logo img { width: 220px; margin-bottom: 16px; }
footer.site p, footer.site a, footer.site li { font-size: 0.9rem; line-height: 1.7; opacity: 0.9; font-weight: 200; }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
footer.site .legal {
  border-top: 1px solid rgba(240,224,190,0.18);
  padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 0.76rem; opacity: 0.7; flex-wrap: wrap; gap: 12px;
}

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
::selection { background: var(--red-velvet); color: var(--butter); }
