/* brand.css — Kastenlab editorial layouts
   Built for the Stock Dutch Design reference: oversized type, big numerals as
   architecture, asymmetry that breaks the grid, mono marginalia. */

:root {
  /* Kastenlab carpentry palette — new warm neutral scheme
     #D1C7BD · #CBAD8D · #D1C7BD · #F1EDE6 · #F1EDE6
     Footer remains #241A16 (unchanged). */
  --color-cream:         #F1EDE6;
  --color-tan:           #CBAD8D;
  --color-sage:          #D1C7BD;
  --color-walnut:        #CBAD8D;

  --color-accent:        #D1C7BD;
  --color-accent-light:  #CBAD8D;
  --color-steel:         #A3AEB8;   /* Cool Steel — blue accent */
  --color-silver:        #CACECF;   /* Silver — lighter blue-grey */

  /* Light-zone token now resolves to the scroll-driven body bg so sections
     stay synced with whatever shade the body currently shows. */
  --color-offwhite:      var(--scroll-bg, #F1EDE6);
  --color-light-bg:      var(--scroll-bg, #F1EDE6);

  --color-navy:          #241A16;          /* deep warm bark (dark sections) */
  --color-navy-darker:   #241A16;
}

/* Body background tracks scroll progress — see js/scroll-bg.js.
   Smooth short transition prevents flicker between scroll events. */
body {
  background-color: var(--scroll-bg, var(--color-cream));
  background-image: none;
  transition: background-color 80ms linear;
}

/* Light sections render transparent so the scroll-driven body bg flows
   through every "light" zone — no horizontal color cuts anywhere on the page. */
.section-light,
.section-warm {
  background-color: transparent;
  background-image: none;
}

/* ============================================================
   1. HERO — SDD-style asymmetric photo collage.
   Warm peachy/sand background. Massive serif title centered.
   ~6 rotated, overlapping images form clusters on left + right.
   Faint circular halo sketched behind the title.
   Circular text badge in the bottom-right corner.
   ============================================================ */
.hero {
  --hero-text:    #F1EDE6;
  --hero-mono:    #A3AEB8;
  --hero-rule:    rgba(163,174,184,0.45);
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  --tilt-tx: 0px;
  --tilt-ty: 0px;
  position: relative;
  min-height: 100svh;
  background: transparent;
  color: var(--hero-text);
  padding: clamp(96px, 12vh, 140px) var(--gutter) clamp(60px, 8vw, 96px);
  overflow: hidden;
  isolation: isolate;
  perspective: 1600px;
}

/* Hero gradient layers — two types built from the carpentry palette.
   Both cover the hero; opacity-crossfaded based on .hero[data-scene]. */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 1800ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Both gradients run dark→light TOP-DOWN so the white nav header stays
   readable across the whole top edge. A soft cream radial near the bottom
   keeps depth without lifting the top zone. */
.hero-bg-a {
  background:
    radial-gradient(80% 55% at 40% 95%, rgba(241,237,230,0.55) 0%, transparent 65%),
    linear-gradient(180deg, #D1C7BD 0%, #CBAD8D 50%, #F1EDE6 100%);
  opacity: 1;
}
.hero-bg-b {
  background:
    radial-gradient(70% 55% at 60% 95%, rgba(241,237,230,0.45) 0%, transparent 65%),
    linear-gradient(180deg, #CBAD8D 0%, #D1C7BD 55%, #F1EDE6 100%);
  opacity: 0;
}
.hero[data-scene="A"] .hero-bg-a { opacity: 1; }
.hero[data-scene="A"] .hero-bg-b { opacity: 0; }
.hero[data-scene="B"] .hero-bg-a { opacity: 0; }
.hero[data-scene="B"] .hero-bg-b { opacity: 1; }

/* Mono header strip — meta info, sits above the collage */
.hero-top {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hero-mono);
  margin-bottom: clamp(20px, 3vw, 36px);
}
.hero-top .hero-meta-row {
  display: flex;
  gap: clamp(16px, 2vw, 32px);
}
.hero-top span + span { padding-left: 16px; border-left: 1px solid var(--hero-rule); }

/* Stage holds the collage and the title together */
.hero-stage {
  position: relative;
  width: 100%;
  min-height: min(620px, 70svh);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Faint sketched circle behind the title — large, thin, subtle */
.hero-halo {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  width: clamp(420px, 56vw, 820px);
  height: clamp(420px, 56vw, 820px);
  border: 1px solid rgba(163,174,184,0.35);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero-halo::after {
  content: '';
  position: absolute;
  inset: 6%;
  border: 1px dashed rgba(163,174,184,0.20);
  border-radius: 50%;
}

/* Image collage — each slot is an absolutely positioned, rotated wrapper.
   Inside each slot, 3 layered <img> elements (one per scene). Only one is
   visible at a time, opacity-crossfaded based on .hero-collage[data-scene].
   Six slots form two clusters around the title (left + right).
   Most sit BEHIND the title; one in each cluster peeks slightly in front. */
.hero-collage {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform-style: preserve-3d;
}

/* Each slot's transform chain combines: parallax tilt, base rotation,
   optional hover lift. All driven by CSS vars so they don't override each
   other. JS sets --tilt-rx/--tilt-ry on the .hero element. */
.hero-slot {
  position: absolute;
  overflow: hidden;
  box-shadow: 0 12px 32px -10px rgba(40,30,18,0.28);
  pointer-events: auto;
  cursor: pointer;
  transform-style: preserve-3d;
  /* Parallax + base rotation + hover scale, all via CSS vars so they
     compose without overriding each other. Translate moves the image
     toward the cursor; rotateX/Y tilts it toward the cursor. */
  transform:
    translate3d(var(--tilt-tx, 0px), var(--tilt-ty, 0px), 0)
    rotateX(var(--tilt-rx, 0deg))
    rotateY(var(--tilt-ry, 0deg))
    rotate(var(--rot, 0deg))
    scale(var(--scale, 1));
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1),
              box-shadow 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.hero-slot:hover {
  --scale: 1.025;
  box-shadow: 0 18px 40px -10px rgba(40,30,18,0.32);
}

.hero-slot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity;
}

/* Scene visibility — exactly one image per slot is shown at a time */
.hero-collage[data-scene="A"] .hero-slot-img[data-scene="A"],
.hero-collage[data-scene="B"] .hero-slot-img[data-scene="B"],
.hero-collage[data-scene="C"] .hero-slot-img[data-scene="C"] { opacity: 1; }

/* LEFT cluster — each slot uses --rot custom prop so hover scale preserves rotation */
.hero-slot--1 {
  width: 17vw; aspect-ratio: 3/4;
  left: 4%;  top: 22%;
  --rot: -4deg;
  transform: rotate(-4deg);
  z-index: 1;
}
.hero-slot--2 {
  width: 12vw; aspect-ratio: 3/4;
  left: 17%; top: 8%;
  --rot: 3deg;
  transform: rotate(3deg);
  z-index: 3;
}
.hero-slot--3 {
  width: 19vw; aspect-ratio: 4/3;
  left: 20%; top: 50%;
  --rot: -1deg;
  transform: rotate(-1deg);
  z-index: 5;
}

/* RIGHT cluster */
.hero-slot--4 {
  width: 16vw; aspect-ratio: 3/4;
  right: 6%; top: 6%;
  --rot: 2deg;
  transform: rotate(2deg);
  z-index: 1;
}
.hero-slot--5 {
  width: 13vw; aspect-ratio: 3/4;
  right: 22%; top: 28%;
  --rot: -3deg;
  transform: rotate(-3deg);
  z-index: 3;
}
.hero-slot--6 {
  width: 19vw; aspect-ratio: 3/4;
  right: 5%; top: 50%;
  --rot: 4deg;
  transform: rotate(4deg);
  z-index: 5;
}

/* Centerpiece title in serif — z-index between back layer (1) and front layer (5) */
.hero-stage .hero-supertitle {
  position: relative;
  z-index: 4;
  pointer-events: none;
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(56px, 9.5vw, 168px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: var(--hero-text);
  text-align: center;
  margin: 0;
  text-shadow: 0 4px 24px rgba(60,38,18,0.15);
  max-width: 12ch;
}
.hero-stage .hero-supertitle .line { display: block; }
.hero-stage .hero-supertitle em {
  font-style: italic;
  color: #F1EDE6;
}

.hero-stage .hero-byline {
  position: relative;
  z-index: 4;
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hero-text);
  text-align: center;
  margin: clamp(24px, 3vw, 36px) auto 0;
  max-width: 60ch;
  opacity: 0.92;
}

/* Mono credits below the collage stage */
.hero-credits {
  position: relative;
  z-index: 6;
  margin-top: clamp(80px, 12vw, 160px);
  padding-top: 20px;
  border-top: 1px solid var(--hero-rule);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--hero-mono);
}
.hero-credits .hero-credits-set { display: flex; gap: clamp(12px, 2vw, 24px); flex-wrap: wrap; }

/* Circular text badge — upper right of hero */
.hero-badge {
  position: absolute;
  top: clamp(80px, 12vw, 140px);
  right: clamp(24px, 4vw, 56px);
  width: clamp(96px, 9vw, 140px);
  height: clamp(96px, 9vw, 140px);
  z-index: 7;
  color: #A3AEB8;
  opacity: 0.85;
  pointer-events: none;
}
.hero-badge .badge-spin { animation: badge-rotate 30s linear infinite; transform-origin: center; }
@keyframes badge-rotate { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .hero-badge .badge-spin { animation: none; }
}

/* Responsive: collapse the collage on small screens. */
@media (max-width: 1024px) {
  .hero-slot--1 { width: 22vw; left: 2%; }
  .hero-slot--2 { width: 16vw; left: 19%; }
  .hero-slot--3 { width: 22vw; left: 14%; top: 60%; }
  .hero-slot--4 { width: 20vw; right: 4%; }
  .hero-slot--5 { width: 16vw; right: 22%; top: 32%; }
  .hero-slot--6 { width: 22vw; right: 4%; top: 58%; }
}

@media (max-width: 768px) {
  .hero { padding: 96px var(--gutter) 72px; }
  .hero-stage { min-height: 0; padding-bottom: clamp(40px, 8vw, 80px); }
  .hero-stage .hero-supertitle { font-size: clamp(48px, 13vw, 84px); max-width: 100%; }
  .hero-halo { width: clamp(280px, 80vw, 480px); height: clamp(280px, 80vw, 480px); }
  .hero-collage { position: relative; inset: auto; height: auto; margin-top: 40px;
                  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
                  pointer-events: auto; }
  .hero-slot {
    position: static !important; width: auto !important;
    transform: none !important; left: auto !important; right: auto !important;
    top: auto !important; z-index: auto !important;
  }
  .hero-slot--1 { grid-column: 1/span 3; }
  .hero-slot--2 { grid-column: 4/span 3; transform: translateY(20px) !important; }
  .hero-slot--3 { grid-column: 1/span 3; transform: translateY(10px) !important; }
  .hero-slot--4 { grid-column: 4/span 3; transform: translateY(30px) !important; }
  .hero-slot--5 { grid-column: 1/span 3; transform: translateY(20px) !important; }
  .hero-slot--6 { grid-column: 4/span 3; display: none; }
  .hero-badge { width: 80px; height: 80px; bottom: 16px; right: 16px; }
}

/* ============================================================
   2. INTRO STATEMENT — editorial
   ============================================================ */
.intro-statement {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.intro-statement-text { padding-top: clamp(24px, 4vw, 56px); }
.intro-statement-headline {
  font-family: 'Bodoni Moda', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(26px, 3.8vw, 58px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: rgba(47, 65, 86, 0.55);
  margin: 0 0 32px;
  max-width: 18ch;
}
.intro-statement-headline em {
  font-style: normal;
  font-weight: 700;
  color: #2F4156;
}
.intro-statement-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.7;
  color: rgba(47, 65, 86, 0.70);
  max-width: 48ch;
}
.intro-statement-body p + p { margin-top: 18px; }

.intro-statement-image {
  margin-right: calc(var(--gutter) * -1);
  transform: translateY(0);
}
.intro-statement-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.intro-statement-image figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-slate);
}
@media (max-width: 900px) {
  .intro-statement { grid-template-columns: 1fr; }
  .intro-statement-image { margin-right: 0; }
}

/* ============================================================
   3. PILLARS — stacked editorial rows
   ============================================================ */
.pillars-stack {
  margin-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(196,168,130,0.25);
}
.pillars-stack .pillar-row {
  display: grid;
  grid-template-columns: clamp(80px, 10vw, 130px) minmax(0, 1.6fr) minmax(0, 2fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px) 0;
  border-bottom: 1px solid rgba(163,174,184,0.22);
}
/* ── Pillar marker — ruled line with traveling notch ── */
.pillar-marker {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: clamp(100px, 14vw, 160px);
  height: 20px;          /* enough room for rule + numeral below */
  opacity: 0;
  transition: opacity 0.1s;
}
.pillar-marker.pm-visible {
  opacity: 1;
}

/* The horizontal rule line — full width, vertically centered */
.pm-rule {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(163,174,184,0.35);
  transform: translateY(-50%);
}

/* The traveling notch — starts at left edge, slides to ~20% */
.pm-notch {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) translateX(0);
  width: 2px;
  height: 8px;
  background: #A3AEB8;
  transition: transform 1.8s cubic-bezier(0.16,1,0.3,1);
}
.pillar-marker.pm-visible .pm-notch {
  transform: translateY(-50%) translateX(calc(var(--pm-rule-w, 120px) * 0.20));
}

/* The numeral — sits just below the notch, absolutely positioned */
.pm-num {
  position: absolute;
  top: calc(50% + 6px);   /* just below the rule/notch */
  left: calc(var(--pm-rule-w, 120px) * 0.20 + 4px);  /* aligned with notch */
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: rgba(163,174,184,0.65);
  opacity: 0;
  transition: opacity 0.6s ease 1.4s;
  white-space: nowrap;
}
.pillar-marker.pm-visible .pm-num {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .pm-notch { transition: none; }
  .pm-num   { transition: none; opacity: 1; }
  .pillar-marker { opacity: 1; }
}

/* Legacy num rule kept for compatibility — hidden */
.pillar-row-num { display: none; }

.pillar-row-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  display: inline-block;
  color: var(--color-navy);
}
.section-dark .pillar-row-title { color: #fff; }
.pillar-row-title::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 1.5px;
  background: var(--color-accent-light);
  transition: width var(--dur-slow) var(--ease-out);
}
.pillar-row:hover .pillar-row-title::after { width: 100%; }

.pillar-row-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: rgba(47, 65, 86, 0.70);
}
.section-dark .pillar-row-body { color: var(--color-pale); }

@media (max-width: 900px) {
  .pillars-stack .pillar-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 32px 0;
  }
  .pillar-row-num { font-size: clamp(64px, 18vw, 96px); }
}

/* ============================================================
   DESIGNERS SPOTLIGHT — 3-card editorial row showcasing external
   architects and designers Kastenlab collaborates with.
   ============================================================ */
.designers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 48px);
  margin-top: clamp(32px, 4vw, 64px);
}
.designer-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  position: relative;
}
.designer-card-image {
  margin: 0 0 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}
.designer-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1000ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.designer-card:hover .designer-card-image img,
.designer-card:focus-visible .designer-card-image img { transform: scale(1.04); }

.designer-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 10px;
}
.designer-card-name {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--color-navy);
  margin: 0 0 8px;
}
.designer-card-meta {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--color-slate);
  margin: 0 0 16px;
}
.designer-card-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(47, 65, 86, 0.70);
  margin: 0 0 18px;
  flex-grow: 1;
}

/* CTA card variant — no image, vertical centred with left walnut border */
.designer-card--cta {
  border-left: 3px solid var(--color-accent);
  padding: clamp(28px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  background: rgba(247,241,222,0.35);
}

@media (max-width: 1024px) {
  .designers-grid { grid-template-columns: 1fr 1fr; }
  .designer-card--cta { grid-column: span 2; }
}
@media (max-width: 700px) {
  .designers-grid { grid-template-columns: 1fr; }
  .designer-card--cta { grid-column: span 1; }
}

/* ============================================================
   TESTIMONIALS — full-bleed carousel with very soft crossfades.
   Each .testimonial is a full-bleed image + overlaid quote.
   Only one is active at a time; opacity crossfades take 1500-1800ms.
   Pagination dots bottom-left, prev/next arrows bottom-right.
   ============================================================ */
.testimonials {
  position: relative;
  width: calc(100% - 20px);
  margin: 10px 10px;
  height: min(820px, 96svh);
  overflow: hidden;
  isolation: isolate;
  background: var(--color-navy);
  border-radius: clamp(20px, 3vw, 40px);
}
.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1600ms cubic-bezier(0.22, 0.61, 0.36, 1),
              visibility 0s linear 1600ms;
  pointer-events: none;
}
.testimonial.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 1600ms cubic-bezier(0.22, 0.61, 0.36, 1),
              visibility 0s linear 0s;
  pointer-events: auto;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.testimonial-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(46,40,32,0.18) 0%,
    rgba(46,40,32,0.32) 60%,
    rgba(46,40,32,0.58) 100%);
  pointer-events: none;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  max-width: min(1100px, 90%);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8vw, 140px) clamp(20px, 5vw, 60px);
}

/* Stagger the text appearance — quote, byline, link each fade up with delay */
.testimonial-content > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 1400ms cubic-bezier(0.22, 0.61, 0.36, 1),
              transform 1400ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.testimonial.is-active .testimonial-content > * {
  opacity: 1;
  transform: translateY(0);
}
.testimonial.is-active .testimonial-content > *:nth-child(1) { transition-delay: 500ms; }
.testimonial.is-active .testimonial-content > *:nth-child(2) { transition-delay: 750ms; }
.testimonial.is-active .testimonial-content > *:nth-child(3) { transition-delay: 950ms; }

.testimonial-quote {
  font-family: 'DM Serif Display', 'Georgia', serif;
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 58px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: 22ch;
  margin: 0;
  text-shadow: 0 4px 30px rgba(0,0,0,0.25);
}

.testimonial-meta {
  margin-top: clamp(24px, 3vw, 36px);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #fff;
  opacity: 0.94;
}
.testimonial-meta strong {
  font-weight: 600;
}
.testimonial-meta em {
  font-style: normal;
  opacity: 0.72;
  margin-left: 8px;
}

.testimonial-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(18px, 2vw, 28px);
  font-family: var(--font-body);
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
.testimonial-link::before {
  content: '→';
  display: inline-block;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.testimonial-link::after {
  content: '';
  position: absolute;
  left: 28px; bottom: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,0.7);
  transition: width 500ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.testimonial-link:hover::before { transform: translateX(4px); }
.testimonial-link:hover::after  { width: calc(100% - 28px); }

/* Dots — bottom-left */
.testimonial-dots {
  position: absolute;
  bottom: clamp(28px, 4vw, 56px);
  left: clamp(20px, 5vw, 60px);
  z-index: 5;
  display: flex;
  gap: 18px;
  align-items: center;
}
.testimonial-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: transform 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
              background 360ms;
  position: relative;
}
.testimonial-dot.is-active {
  background: #fff;
  transform: scale(1.6);
}
.testimonial-dot.is-active::after {
  content: '';
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 50%;
}

/* Arrows — bottom-right */
.testimonial-arrows {
  position: absolute;
  bottom: clamp(28px, 4vw, 56px);
  right: clamp(20px, 5vw, 60px);
  z-index: 5;
  display: flex;
  gap: 14px;
}
.testimonial-arrow {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 360ms cubic-bezier(0.22, 0.61, 0.36, 1),
              border-color 360ms;
}
.testimonial-arrow:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
}
.testimonial-arrow svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .testimonials { height: min(720px, 90svh); width: calc(100% - 20px); margin-left: 10px; margin-right: 10px; }
  .testimonial-quote { font-size: clamp(26px, 6vw, 38px); }
  .testimonial-arrow { width: 44px; height: 44px; }
}

/* ============================================================
   3b. THE MAKER — Jorg editorial feature
   ============================================================ */
.maker-section {
  overflow-x: clip; /* clip content bleeding past right edge (maker-image negative margin + maker-text-bg) */
}
.maker-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(24px, 3vw, 48px);
  align-items: stretch;
  position: relative;
}
.maker-image {
  position: relative;
  margin: 0;
  margin-left: calc(var(--gutter) * -0.4);
  display: flex;
  flex-direction: column;
}
.maker-image img {
  width: 100%;
  flex: 1 1 0; /* fill all available column height */
  min-height: 0;
  object-fit: cover;
}
.maker-image figcaption {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-slate);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
/* Crosshair plus-marks at the four corners of the maker image */
.maker-image .sketch-corner {
  position: absolute;
  width: 14px; height: 14px;
  color: var(--color-accent);
  opacity: 0.55;
}
.maker-image .sketch-corner--tl { top: -7px;    left: -7px; }
.maker-image .sketch-corner--tr { top: -7px;    right: -7px; }
.maker-image .sketch-corner--bl { bottom: -7px; left: -7px; }
.maker-image .sketch-corner--br { bottom: -7px; right: -7px; }

.maker-text {
  padding-top: clamp(12px, 2vw, 24px);
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.maker-role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 10px;
}
.maker-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin: 0 0 28px;
}
.maker-quote {
  position: relative;
  font-family: 'Syne', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.2;
  color: var(--color-accent);
  margin: 0 0 28px;
  padding: 4px clamp(18px, 2.4vw, 32px);
  max-width: 32ch;
}
.maker-quote .bracket {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 80%;
  color: var(--color-accent);
  opacity: 0.6;
}
.maker-quote .bracket--l { left: 0; }
.maker-quote .bracket--r { right: 0; transform: translateY(-50%) scaleX(-1); }

.maker-bio {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.8;
  color: rgba(47, 65, 86, 0.70);
  margin: 0 0 28px;
}
.maker-bio p + p { margin-top: 14px; }

.maker-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-slate);
  padding-top: 20px;
  border-top: 1px solid rgba(139,115,85,0.25);
}
.maker-stats span { position: relative; }
.maker-stats span + span::before {
  content: '·';
  position: absolute;
  left: -14px;
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .maker-grid { grid-template-columns: 1fr; }
  .maker-image { margin-left: 0; }
}

/* ============================================================
   4. PROJECTS TRIO — 3 clean category cards
   ============================================================ */
.projects-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: clamp(32px, 4vw, 56px);
}

.trio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(163,174,184,0.18);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.trio-card:hover {
  box-shadow: 0 8px 40px rgba(58,45,40,0.12);
  transform: translateY(-3px);
}

.trio-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.trio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.trio-card:hover .trio-card-img img {
  transform: scale(1.04);
}

.trio-card-body {
  padding: clamp(20px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.trio-card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #A3AEB8;
  display: block;
}

.trio-card-desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.7;
  color: rgba(47, 65, 86, 0.70);
  flex: 1;
}

.trio-card-cta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #241A16;
  display: block;
  padding-top: 8px;
  border-top: 1px solid rgba(163,174,184,0.25);
  transition: color 0.2s ease;
}
.trio-card:hover .trio-card-cta {
  color: #CBAD8D;
}

@media (max-width: 860px) {
  .projects-trio { grid-template-columns: 1fr; }
  .trio-card-img { aspect-ratio: 16/9; }
}

/* Sidebar variant — used on schrijnwerkerij-maatwerk, now full-width.
   3-column layout, each cell capped at viewport height. */
.featured-grid--sidebar {
  grid-template-columns: repeat(3, 1fr) !important;
  grid-auto-rows: unset !important;
  align-items: start;
}
.featured-grid--sidebar .project-card:nth-child(n) {
  grid-column: span 1 !important;
  grid-row: span 1 !important;
  overflow: hidden;
  position: relative;
  display: block;
  height: clamp(240px, 45vh, 60vh);
}
.featured-grid--sidebar .project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .featured-grid--sidebar {
    grid-template-columns: 1fr 1fr !important;
  }
  .featured-grid--sidebar .project-card:nth-child(n) {
    height: clamp(200px, 35vh, 45vh);
  }
}
@media (max-width: 560px) {
  .featured-grid--sidebar {
    grid-template-columns: 1fr !important;
  }
  .featured-grid--sidebar .project-card:nth-child(n) {
    height: clamp(200px, 45vw, 50vh);
  }
}

/* The full-bleed type slab between project rows */
.featured-slab {
  margin: clamp(40px, 6vw, 96px) 0 0;
  text-align: left;
}
.featured-slab .type-slab { max-width: 26ch; }

/* ============================================================
   5. PROCESS TIMELINE — vertical magazine list
   ============================================================ */
.process-list {
  margin-top: clamp(24px, 3vw, 48px);
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: clamp(72px, 9vw, 132px);
  border-left: 1px dashed var(--color-accent);
  opacity: 0.55;
}
.process-row {
  display: grid;
  grid-template-columns: clamp(120px, 14vw, 200px) minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
  padding: clamp(36px, 5vw, 64px) 0;
  border-top: 1px solid rgba(86,124,141,0.22);
}
.process-row:last-child { border-bottom: 1px solid rgba(86,124,141,0.22); }
.process-row-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 11vw, 140px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--color-accent);
  margin: 0;
  position: relative;
  z-index: 2;
}
.process-row-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-slate);
  margin-bottom: 8px;
}
.process-row-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 0;
}
.process-row-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.8;
  color: rgba(47, 65, 86, 0.70);
  margin: 0;
  max-width: 46ch;
}
@media (max-width: 900px) {
  .process-list::before { display: none; }
  .process-row { grid-template-columns: 1fr; gap: 14px; }
  .process-row-num { font-size: clamp(64px, 18vw, 96px); }
}

/* ============================================================
   6. SPOTLIGHT
   ============================================================ */
.spotlight {
  display: grid;
  grid-template-columns: 60% 40%;
  background: #F1EDE6;
  color: var(--color-navy);
  padding: 10px 10px 10px 10px;
  gap: 0;
}
.spotlight-image {
  min-height: 380px;
  overflow: hidden;
  position: relative;
  border-radius: clamp(20px, 3vw, 40px);
}
.spotlight-image img { width:100%; height:100%; object-fit: cover; }
.spotlight-image .work-index-tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(28,38,52,0.7);
  padding: 5px 12px;
}
.spotlight-text {
  padding: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.spotlight-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--color-navy);
  margin: 0 0 24px;
  max-width: 14ch;
}
.spotlight-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-navy);
  opacity: 0.75;
  margin-bottom: 24px;
  max-width: 50ch;
}
.spotlight-meta {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 8px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 28px;
}
.spotlight-meta dt { opacity: 0.50; }
.spotlight-meta dd { margin: 0; opacity: 0.90; }

.spotlight .material-tag {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
.spotlight .material-tag:hover { background: var(--color-accent); color: #fff; }

@media (max-width: 900px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight-image { min-height: 320px; }
}

/* ============================================================
   7. SISTERS / CONTACT-CTA — kept tight, editorial
   ============================================================ */
.sisters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(24px, 3vw, 48px);
  border-top: 1px solid rgba(196,168,130,0.25);
  padding-top: clamp(36px, 4vw, 56px);
}
.sister-card {
  padding: clamp(0px, 1vw, 16px) 0;
  border-left: 3px solid var(--card-accent, var(--color-accent));
  padding-left: clamp(20px, 2.5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.sister-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--card-accent, var(--color-accent));
}
.sister-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-navy);
  margin: 0;
}
.sister-card-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(47, 65, 86, 0.70);
  max-width: 40ch;
  margin: 0;
}
.sister-card .cta-link::after { background: var(--card-accent, var(--color-accent)); }
@media (max-width: 768px) { .sisters { grid-template-columns: 1fr; } }

.contact-cta-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6.4vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--color-navy);
  margin-bottom: 28px;
  max-width: 16ch;
}
.contact-cta-headline em {
  color: var(--color-accent);
  font-style: italic;
  font-weight: 400;
}
.contact-cta-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.75;
  color: rgba(47, 65, 86, 0.70);
  margin-bottom: 36px;
  max-width: 48ch;
}
.section-warm .contact-cta-actions .cta-link { color: var(--color-navy); }
.section-warm .contact-cta-actions .cta-link::after { background: var(--color-accent); }
.contact-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.contact-cta-actions .cta-link { font-size: 16px; }

/* ============================================================
   PROJECTEN PAGE — schrijnwerkerij-maatwerk.html
   ============================================================ */

.projecten-main {
  padding-top: 88px;
  background: var(--color-cream, #F1EDE6);
  min-height: 100vh;
}

/* ── Filter / description bar ── */
.pf-nav-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(32px, 5vw, 60px) clamp(20px, 5vw, 60px) clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(92,61,30,0.10);
}

.pf-desc-area { flex: 1; min-width: 0; }
.pf-desc-block { display: none; }
.pf-desc-block--active { display: block; }

.pf-desc-types {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.pf-desc-types li {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 13px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(74,103,131,0.70);
  line-height: 1.5;
  padding-left: 1.2em;
  position: relative;
}
.pf-desc-types li::before {
  content: '—'; position: absolute; left: 0; opacity: 0.35;
}
.pf-seo-text {
  margin: 10px 0 0;
  font-family: var(--font-body);
  font-size: clamp(12px, 1vw, 13px);
  color: rgba(47,65,86,0.40);
  line-height: 1.6;
  max-width: 52ch;
}

.pf-nav {
  display: flex; flex-direction: column; gap: 4px;
  flex-shrink: 0; padding-top: 4px;
}
.pf-tab {
  display: block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid rgba(164,131,116,0.30);
  background: transparent;
  font-family: var(--font-nav);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(47,65,86,0.55);
  cursor: pointer; white-space: nowrap;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.pf-tab:hover { background: rgba(74,103,131,0.14); border-color: rgba(74,103,131,0.40); color: #2F4156; }
.pf-tab--active { background: #2F4A62; border-color: #2F4A62; color: #F1EDE6; }

/* ── Featured 3-card grid ── */
.pf-two-col { padding: clamp(40px, 6vw, 80px) 0; }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}
.project-card {
  display: block; position: relative; overflow: hidden;
  border-radius: 12px; aspect-ratio: 4/5;
  text-decoration: none; background: #D1C7BD;
}
.project-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 500ms cubic-bezier(0.16,1,0.3,1);
}
.project-card:hover img { transform: scale(1.04); }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,28,20,0.75) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(16px, 2.5vw, 28px);
  opacity: 0; transition: opacity 300ms ease;
}
.project-card:hover .project-card-overlay { opacity: 1; }
.project-card-code {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(244,243,240,0.6); margin: 0 0 4px;
}
.project-card-title {
  font-family: var(--font-wordmark);
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 400;
  color: #F1EDE6; margin: 0 0 4px;
}
.project-card-loc {
  font-family: var(--font-body); font-size: 11px;
  color: rgba(244,243,240,0.5); margin: 0;
}
.work-index-tag {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(244,243,240,0.7);
  background: rgba(28,28,20,0.45);
  padding: 4px 10px; border-radius: 50px;
  backdrop-filter: blur(4px);
}

/* ── Quote slab ── */
.featured-slab {
  margin-top: clamp(24px, 3vw, 40px);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 5vw, 60px);
  background: rgba(92,61,30,0.06); border-radius: 16px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.type-slab {
  font-family: var(--font-wordmark);
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 400; font-style: italic;
  color: var(--color-navy); margin: 0; line-height: 1.3;
}
.type-slab .accent { color: #241A16; font-style: normal; }
.type-slab .quote-mark { opacity: 0.3; font-size: 1.4em; vertical-align: -0.15em; }
.cta-link {
  font-family: var(--font-nav); font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #241A16; text-decoration: none;
  border-bottom: 1px solid rgba(92,61,30,0.3);
  padding-bottom: 2px; white-space: nowrap;
  transition: border-color 200ms ease;
}
.cta-link:hover { border-color: #241A16; }

/* ── Grid header ── */
.pf-list-section { padding: clamp(40px, 6vw, 80px) 0; }
.pf-grid-header {
  display: flex; align-items: baseline;
  justify-content: space-between;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding: 0 clamp(20px, 5vw, 60px);
}
.pf-grid-label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(47,65,86,0.45);
}
.pf-grid-count {
  font-family: var(--font-mono); font-size: 11px;
  color: rgba(47,65,86,0.35);
}

/* ══════════════════════════════════════════════════════════
   STACKED SCROLL CARDS — sticky shrink-and-fade-out effect
   Each card sticks near the top, shrinks + fades as next
   card scrolls up from below.
   ══════════════════════════════════════════════════════════ */
.pf-project-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 clamp(20px, 5vw, 60px);
}

.pf-item-wrap {
  /* Each item needs height for the scroll distance */
  position: relative;
}
.pf-item-wrap[hidden] { display: none; }

.pf-item {
  position: sticky;
  top: 108px; /* 88px nav + 20px gap */
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  background: #F1EDE6;
  border-radius: 20px;
  padding: clamp(28px, 3.5vw, 48px);
  margin-bottom: clamp(16px, 2vw, 24px);
  box-shadow: 0 4px 32px rgba(47,65,86,0.07);
  transform-origin: top center;
  /* JS will drive scale + opacity via CSS custom props */
  transform: scale(var(--pf-scale, 1));
  opacity: var(--pf-opacity, 1);
  transition: box-shadow 300ms ease;
  will-change: transform, opacity;
}

/* ── Carousel ── */
.pf-item-carousel {
  position: relative; border-radius: 12px;
  overflow: hidden; aspect-ratio: 4/3; background: #D1C7BD;
}
.pf-carousel-track {
  display: flex; width: 100%; height: 100%;
  transition: transform 400ms cubic-bezier(0.16,1,0.3,1);
}
.pf-carousel-track img {
  width: 100%; height: 100%; object-fit: cover; flex-shrink: 0;
}
.pf-item-img-link { position: absolute; inset: 0; z-index: 1; }
.pf-carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(241,237,230,0.85); color: #241A16;
  font-size: 14px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 200ms ease;
}
.pf-item-carousel:hover .pf-carousel-btn { opacity: 1; }
.pf-carousel-btn--prev { left: 10px; }
.pf-carousel-btn--next { right: 10px; }
.pf-carousel-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
