/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(480px, 72vh, 1000px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 140%;
  object-fit: cover;
  object-position: center center;
  display: block;
  will-change: transform;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 8, .38);
}
.hero-center {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem;
}
.hero-logo-img {
  width: clamp(300px, 46vw, 560px);
  height: auto;
  margin-bottom: .25rem;
}
.hero-tagline {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: clamp(.9rem, 1.8vw, 1.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, .82);
  letter-spacing: .1em;
}
.hero-sub-text {
  font-family: 'Quattrocento', Georgia, serif;
  font-size: clamp(.8rem, 1.4vw, 1rem);
  color: rgba(255,255,255,.6);
  max-width: 420px;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .25rem;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.4);
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.3);
  animation: scrollline 1.8s ease-in-out infinite;
}
@keyframes scrollline {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

/* ── Brand story ────────────────────────────────────────────── */
.brand-story {
  background: var(--ivory-d);
  padding: 5rem clamp(1.5rem, 8vw, 10rem) 6rem;
  text-align: center;
}
.brand-story-envelope {
  max-width: clamp(130px, 18vw, 210px);
  height: auto;
  margin: 0 auto 3.5rem;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(42,26,20,.12));
}
.brand-story-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.brand-story-rule {
  width: 36px; height: 1px;
  background: var(--sage-d);
  margin: 0 auto 2.5rem;
}
.brand-story-title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.2vw, 2.6rem);
  font-weight: 400;
  color: var(--coal);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.brand-story-body {
  font-family: var(--body);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(89,70,35,.65);
  line-height: 1.85;
}
.brand-story-link {
  display: inline-block; margin-top: 1.5rem;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bordeaux); border-bottom: 1px solid var(--border);
  padding-bottom: 2px; transition: border-color .2s;
}
.brand-story-link:hover { border-color: var(--bordeaux); }

/* ── Collectie ──────────────────────────────────────────────── */
.collection { background: var(--ivory); }
.collection-intro-label {
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); display: block; margin-top: 1.25rem; margin-bottom: 1.2rem;
}
.collection-intro-sub {
  font-family: var(--display);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-style: italic; font-weight: 300;
  color: var(--bordeaux); margin-top: .4rem; display: block;
}
.collection-intro-desc {
  font-size: .875rem; color: var(--muted);
  line-height: 1.85; max-width: 580px;
  margin: 1rem auto 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease);
}
.product-card:hover {
  box-shadow: 0 10px 40px rgba(42,26,20,.13);
  transform: translateY(-6px);
}
.product-card-img {
  aspect-ratio: 4 / 5;
  background: var(--ivory-d);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-img-ph { font-family: var(--script); font-size: 3.5rem; color: var(--border); }
.product-card-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .55rem; border-radius: 2px;
  background: var(--bordeaux); color: #fff;
}
.product-card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; gap: .3rem; }
.product-card-cat { font-size: .67rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.product-card-title {
  font-family: var(--display); font-size: 1.05rem; font-weight: 400;
  color: var(--coal); line-height: 1.3;
}
.product-card-price { font-family: var(--display); font-size: 1rem; font-weight: 500; color: var(--bordeaux); }
.product-card-desc { font-size: .82rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
.product-card-list {
  list-style: none; font-size: .75rem; color: var(--muted); line-height: 1.9;
  border-top: 1px solid var(--border); padding-top: .75rem; margin-bottom: .75rem;
}
.product-card-list li::before { content: '—\00a0'; color: var(--bordeaux); }
.product-card-cta {
  display: block; margin-top: auto; padding-top: .75rem;
  border-top: 1px solid var(--border);
  font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); transition: color .2s;
}
.product-card-cta:hover { color: var(--bordeaux); }

/* ── Personalisatie ─────────────────────────────────────────── */
.personalise-section { background: var(--ivory-d); }
.personalise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.personalise-visual { position: relative; }
.personalise-photo-wrap {
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(42,26,20,.2);
  position: relative;
}
.personalise-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2px;
  pointer-events: none;
}
.personalise-photo-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

/* ── Proces accordion ───────────────────────────────────────── */
.process-accordion { border-top: 1px solid var(--border); }
.process-item { border-bottom: 1px solid var(--border); }
.process-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 0;
  cursor: pointer;
  user-select: none;
}
.process-item summary::-webkit-details-marker { display: none; }
.process-item summary:focus-visible { outline: 2px solid var(--bordeaux); outline-offset: 2px; }
.process-num {
  font-family: var(--display); font-size: 1.5rem; font-weight: 400;
  color: var(--bordeaux); line-height: 1; flex-shrink: 0; width: 2rem;
}
.process-title {
  font-family: var(--display); font-size: 1rem; font-weight: 700;
  color: var(--coal); flex: 1; transition: color .2s;
}
.process-item[open] .process-title { color: var(--bordeaux); }
.process-chevron {
  width: 16px; height: 16px; flex-shrink: 0;
  color: var(--muted); transition: transform .3s var(--ease), color .2s;
}
.process-item[open] .process-chevron { transform: rotate(180deg); color: var(--bordeaux); }
.process-body {
  padding: 0 0 1.25rem 3.25rem;
  font-size: .875rem; color: var(--muted); line-height: 1.8; overflow: hidden;
}

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { background: var(--ivory-d); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--surface); border: none; border-radius: 3px;
  padding: 1.75rem; position: relative;
  box-shadow: 0 4px 24px rgba(42,26,20,.09);
}
.testimonial::before {
  content: '\201C';
  font-family: var(--display); font-size: 4rem; color: var(--border);
  line-height: .5; position: absolute; top: 1.25rem; left: 1.25rem;
}
.testimonial-text {
  font-family: var(--body); font-size: .9rem; font-style: italic; font-weight: 300;
  line-height: 1.7; color: var(--coal); margin-bottom: 1.25rem; padding-top: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--ivory-d);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: .875rem; color: var(--muted); flex-shrink: 0;
}
.testimonial-name { font-size: .8rem; font-weight: 700; color: var(--coal); }
.testimonial-detail { font-size: .75rem; color: var(--muted); }
.testimonial-stars { color: var(--gold); font-size: .75rem; margin-bottom: .25rem; }

/* ── Over ons blok (homepage) ───────────────────────────────── */
.about { background: var(--coal); color: var(--ivory); padding: 7rem clamp(1.5rem, 5vw, 4rem); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  aspect-ratio: 4 / 5; background: rgba(247,242,234,.06); border-radius: 3px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center; display: block;
}
.about-img-ph { font-family: var(--script); font-size: 4rem; color: rgba(247,242,234,.12); }
.about-img-accent {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 120px; height: 120px; background: var(--bordeaux); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: .1rem;
}
.about-img-accent-num {
  font-family: var(--display); font-size: 1.75rem; font-weight: 300; color: #fff; line-height: 1;
}
.about-img-accent-label {
  font-size: .6rem; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.6); text-align: center; padding: 0 .5rem;
}
.about .section-label { color: var(--bordeaux-l); }
.about .section-title { color: var(--ivory); }
.about .section-script { color: var(--bordeaux-l); margin-bottom: 1.5rem; text-align: left; }
.about-text p { font-size: .9375rem; color: rgba(247,242,234,.6); line-height: 1.9; margin-bottom: 1rem; }
.about-text p strong { color: var(--ivory); font-weight: 400; }
.about-signature {
  font-family: var(--script); font-size: 2.25rem; color: var(--bordeaux-l);
  display: block; margin-top: 1.5rem;
}

/* ── Waarden sectie achtergrond ─────────────────────────────── */
.values { background: var(--ivory); }

/* ── Instagram ──────────────────────────────────────────────── */
.instagram { background: var(--ivory); padding: 5rem clamp(1.5rem, 5vw, 4rem); }
.instagram-head { text-align: center; margin-bottom: 2rem; }
.instagram-handle {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 2rem; transition: color .2s;
}
.instagram-handle:hover { color: var(--bordeaux); }
.instagram-handle svg { width: 16px; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .75rem;
}
.instagram-cell {
  aspect-ratio: 1; background: var(--ivory-d); border-radius: 2px;
  overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: opacity .2s;
}
.instagram-cell:hover { opacity: .85; }
.instagram-cell-ph { font-family: var(--script); font-size: 2rem; color: var(--border); }
.instagram-cell img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s var(--ease);
}
.instagram-cell:hover img { transform: scale(1.06); }

/* ── CTA-balk ────────────────────────────────────────────────── */
.cta-banner {
  background: var(--bordeaux);
  padding: 6rem clamp(1.5rem, 5vw, 4rem);
  text-align: center; position: relative; overflow: hidden;
}
.cta-logo-bg {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  height: 72%; width: auto; opacity: 0.12;
  filter: invert(1) grayscale(1) brightness(2);
  mix-blend-mode: screen; pointer-events: none; user-select: none;
}
.cta-banner .section-label { color: rgba(255,255,255,.45); }
.cta-banner .section-title { color: #fff; margin-bottom: .75rem; font-size: clamp(2rem, 4vw, 3rem); }
.cta-banner p { color: rgba(255,255,255,.65); max-width: 460px; margin: 0 auto 2.5rem; font-size: .9375rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial:last-child { display: none; }
}
@media (max-width: 860px) {
  .personalise-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-accent { right: -.75rem; bottom: -.75rem; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .instagram-grid .instagram-cell:nth-child(n+4) { display: none; }
}
@media (max-width: 760px) {
  .product-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial:last-child { display: block; }
  .hero-logo-img { width: clamp(160px, 55vw, 260px); }
}
