/* ============================================
   STUDIO OJNI — Stylesheet
   Bold, artistic, organized.
   ============================================ */

:root {
  --blue: #1a2858;
  --blue-deep: #0e1a40;
  --mustard: #e6b73a;
  --mustard-soft: #f0d176;
  --rust: #c25a3a;
  --rust-deep: #9a3f25;
  --cream: #f7f1e1;
  --cream-warm: #f0e7d0;
  --ink: #15192e;
  --paper: #fbf8ec;

  /* Legacy aliases (keep these for any leftover refs) */
  --turquoise: var(--mustard);
  --turquoise-soft: var(--mustard-soft);
  --magenta: var(--mustard);
  --magenta-soft: var(--mustard-soft);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;

  --max-width: 1280px;
  --gutter: clamp(1.5rem, 4vw, 4rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================
   DECORATIVE INK BLOBS
   ============================================ */
.ink-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.ink-blob--1 { width: 500px; height: 500px; background: var(--mustard); top: -100px; right: -150px; }
.ink-blob--2 { width: 400px; height: 400px; background: var(--rust); top: 40%; left: -100px; }
.ink-blob--3 { width: 600px; height: 600px; background: var(--blue); bottom: -200px; right: -200px; opacity: 0.1; }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem var(--gutter);
  background: rgba(250, 247, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 40, 88, 0.08);
}

.logo img {
  height: 100px;
  width: auto;
  mix-blend-mode: multiply;
  margin-left: -12px;
}

.nav {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav a {
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s;
}
.nav a:hover { color: var(--rust); }
.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rust);
  transition: width 0.3s ease;
}
.nav a:hover::after { width: 100%; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.lang-toggle button {
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  color: var(--ink);
  opacity: 0.4;
  transition: all 0.2s;
}
.lang-toggle button.active {
  opacity: 1;
  background: var(--blue);
  color: var(--cream);
}
.lang-toggle button:hover { opacity: 1; }
.lang-divider { opacity: 0.4; }

@media (max-width: 720px) {
  .nav { display: none; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 100px);
  padding: 3rem var(--gutter) 5rem;
  display: flex;
  align-items: center;
  z-index: 1;
}

.hero-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  position: relative;
}

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--rust);
  letter-spacing: 0.05em;
  margin: 0 0 1.5rem;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 1.8rem;
  color: var(--blue);
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) forwards;
}
.word-1 { animation-delay: 0.1s; }
.word-2 { animation-delay: 0.25s; color: var(--rust); font-style: italic; }
.word-3 { animation-delay: 0.4s; }
.word-4 { animation-delay: 0.7s; color: var(--mustard); font-weight: 700; }

.hero-amp {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  opacity: 0.5;
  margin: 0 0.2em;
  animation: rise 0.9s 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 540px;
  color: var(--ink);
  opacity: 0.8;
  margin: 0 0 1rem;
  line-height: 1.5;
  animation: rise 0.9s 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

.hero-byline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--blue);
  opacity: 0.75;
  margin: 0 0 2rem;
  max-width: 540px;
  animation: rise 0.9s 1s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  animation: rise 0.9s 1.1s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.8rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--rust);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(184, 90, 60, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-ghost:hover { background: var(--blue); color: var(--cream); }

/* Hero photo */
.hero-photo {
  position: relative;
  animation: rise 1.1s 0.4s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

.hero-photo-frame {
  margin: 0;
  position: relative;
  z-index: 2;
  border-radius: 6px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 30px 60px -25px rgba(26, 40, 88, 0.5);
  border: 8px solid var(--paper);
}

.hero-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}

.hero-photo .circle-mark {
  position: absolute;
  top: -30px;
  right: -50px;
  width: 180px;
  height: 180px;
  color: var(--mustard);
  opacity: 0.55;
  z-index: 1;
  animation: spin 60s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-photo {
    max-width: 380px;
    margin: 0 auto;
    order: -1;
  }
  .hero-photo .circle-mark {
    width: 130px;
    height: 130px;
    top: -20px;
    right: -20px;
  }
  .hero {
    min-height: auto;
    padding-top: 2rem;
  }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--blue);
  color: var(--cream);
  overflow: hidden;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  gap: 2rem;
}
.marquee-track span { padding-right: 2rem; }
@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION FRAME
   ============================================ */
.workshops {
  padding: 7rem var(--gutter) 5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-header {
  max-width: 720px;
  margin: 0 auto 5rem;
  text-align: center;
}

.section-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--rust);
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  color: var(--blue);
}

.section-intro {
  font-size: 1.1rem;
  color: var(--ink);
  opacity: 0.75;
  margin: 0;
}

/* ============================================
   WORKSHOP CARDS
   ============================================ */
.workshop {
  display: grid;
  gap: 3rem;
  margin-bottom: 8rem;
  position: relative;
  align-items: center;
}

/* Default: text left, visual right */
.workshop {
  grid-template-columns: 1fr 1.1fr;
}

/* Alternate: text right, visual left */
.workshop:nth-of-type(even) {
  grid-template-columns: 1.1fr 1fr;
}
.workshop:nth-of-type(even) .workshop-content { order: 2; }
.workshop:nth-of-type(even) .workshop-gallery,
.workshop:nth-of-type(even) .workshop-visual { order: 1; }

.workshop-number {
  position: absolute;
  top: -3rem;
  left: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 6rem;
  color: var(--mustard);
  opacity: 0.35;
  line-height: 1;
  pointer-events: none;
}

.workshop:nth-of-type(even) .workshop-number {
  left: auto;
  right: 0;
}

.workshop-content {
  position: relative;
  z-index: 2;
}

.workshop-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  color: var(--blue);
}

.workshop-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--rust);
  margin: 0 0 1.5rem;
}

.workshop-content p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink);
  opacity: 0.85;
}

.dev-note {
  background: var(--cream);
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--mustard);
  border-radius: 0 6px 6px 0;
  font-style: italic;
  margin-top: 1.5rem !important;
}

.badge-new {
  position: absolute;
  top: -1rem;
  right: 0;
  background: var(--rust);
  color: var(--cream);
  padding: 0.4rem 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  border-radius: 999px;
  transform: rotate(3deg);
  z-index: 3;
  box-shadow: 0 6px 20px -5px rgba(184, 90, 60, 0.4);
}

/* ============================================
   WORKSHOP 1 — KARIKATUUR (collage gallery)
   ============================================ */
.workshop--karikatuur .workshop-gallery {
  position: relative;
  height: 540px;
}

.workshop--karikatuur figure {
  position: absolute;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(26, 40, 88, 0.4);
  transition: transform 0.4s ease;
}
.workshop--karikatuur figure:hover {
  transform: scale(1.03) rotate(0deg) !important;
  z-index: 10;
}

.workshop--karikatuur .g-main {
  width: 70%;
  height: 75%;
  top: 0;
  right: 0;
  transform: rotate(2deg);
  z-index: 2;
}
.workshop--karikatuur .g-main img { width: 100%; height: 100%; object-fit: cover; }

.workshop--karikatuur .g-1 {
  width: 42%;
  height: 45%;
  bottom: 0;
  left: 0;
  transform: rotate(-4deg);
  z-index: 3;
  border: 6px solid var(--paper);
}
.workshop--karikatuur .g-1 img { width: 100%; height: 100%; object-fit: cover; }

.workshop--karikatuur .g-2 {
  width: 35%;
  height: 35%;
  top: 5%;
  left: 0;
  transform: rotate(-6deg);
  z-index: 1;
  border: 6px solid var(--paper);
}
.workshop--karikatuur .g-2 img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   WORKSHOP 2 — ZENTANGLE (grid gallery)
   ============================================ */
.zentangle-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  align-items: stretch;
}
.zentangle-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
  box-shadow: 0 10px 30px -10px rgba(26, 40, 88, 0.25);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
}
.zentangle-gallery figure:hover { transform: translateY(-4px); }
.zentangle-gallery img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  display: block;
}

.z-1 { grid-column: 1; grid-row: 1; }
.z-2 { grid-column: 2; grid-row: 1; }
.z-3 { grid-column: 1; grid-row: 2; }
.z-4 { grid-column: 2; grid-row: 2; }

/* ============================================
   WORKSHOP 3 — STRIPVERHAAL (photo collage)
   ============================================ */
.strip-gallery {
  position: relative;
  height: 540px;
}

.strip-gallery figure {
  position: absolute;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(26, 40, 88, 0.4);
  transition: transform 0.4s ease;
}
.strip-gallery figure:hover {
  transform: scale(1.03) rotate(0deg) !important;
  z-index: 10;
}

.strip-gallery .s-main {
  width: 70%;
  height: 70%;
  top: 0;
  right: 0;
  transform: rotate(1.5deg);
  z-index: 2;
}
.strip-gallery .s-main img { width: 100%; height: 100%; object-fit: cover; }

.strip-gallery .s-1 {
  width: 50%;
  height: 38%;
  bottom: 0;
  left: 5%;
  transform: rotate(-3deg);
  z-index: 3;
  border: 6px solid var(--paper);
}
.strip-gallery .s-1 img { width: 100%; height: 100%; object-fit: cover; }

.strip-gallery .s-2 {
  width: 32%;
  height: 38%;
  top: 8%;
  left: 0;
  transform: rotate(-5deg);
  z-index: 1;
  border: 6px solid var(--paper);
}
.strip-gallery .s-2 img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   WORKSHOP 3 — STRIPVERHAAL (legacy SVG, kept for reference if needed)
   ============================================ */
.workshop-visual--strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 480px;
}
.comic-panel {
  background: var(--cream-warm);
  border: 3px solid var(--blue);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.comic-panel:hover { transform: translateY(-4px) rotate(-1deg); }

.comic-panel--1 { transform: rotate(-1.5deg); }
.comic-panel--2 { transform: rotate(1deg); background: var(--mustard); }
.comic-panel--3 { transform: rotate(0.5deg); }
.comic-panel--4 { transform: rotate(-0.5deg); background: var(--rust); color: var(--cream); }

.comic-panel svg { width: 70%; height: 70%; }

.comic-pow {
  font-family: var(--font-display);
  font-weight: 800;
  font-style: italic;
  font-size: 3rem;
  color: var(--blue);
  letter-spacing: -0.04em;
}
.comic-pow--small { color: var(--cream); font-size: 2.4rem; }

/* ============================================
   WORKSHOP 4 — KLEURENDANS (splatter)
   ============================================ */
.workshop-visual--dans {
  position: relative;
  height: 480px;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
}
.splatter {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.splatter-1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--rust) 30%, transparent 70%);
  top: 10%; left: 15%;
  animation: float 8s ease-in-out infinite;
}
.splatter-2 {
  width: 150px; height: 150px;
  background: radial-gradient(circle, var(--mustard) 30%, transparent 70%);
  top: 50%; right: 20%;
  animation: float 10s ease-in-out infinite 1s;
}
.splatter-3 {
  width: 100px; height: 100px;
  background: radial-gradient(circle, var(--blue) 30%, transparent 70%);
  bottom: 15%; left: 30%;
  animation: float 7s ease-in-out infinite 2s;
}
.splatter-4 {
  width: 80px; height: 80px;
  background: radial-gradient(circle, var(--rust-deep) 40%, transparent 70%);
  top: 30%; right: 40%;
  animation: float 9s ease-in-out infinite 3s;
}
.splatter-5 {
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--mustard-soft) 30%, transparent 70%);
  bottom: 25%; right: 10%;
  animation: float 11s ease-in-out infinite 0.5s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.95); }
}

/* ============================================
   WORKSHOP 5 — MANDALA (gallery)
   ============================================ */
.mandala-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
  height: 480px;
}
.mandala-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: white;
  box-shadow: 0 15px 40px -15px rgba(26, 40, 88, 0.3);
}
.mandala-gallery img { width: 100%; height: 100%; object-fit: cover; }

.m-main {
  transform: rotate(-1deg);
  height: 100%;
}

.m-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rust);
  padding: 1rem;
}
.m-svg svg {
  width: 100%;
  height: 100%;
  max-width: 220px;
  animation: spin-slow 80s linear infinite;
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

/* ============================================
   WORKSHOP 6 — AUTHENTIEK RELATEREN
   ============================================ */
.workshop-visual--relateren {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 6px;
  color: var(--blue);
}
.connection-svg {
  width: 80%;
  height: 80%;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; transform: scale(1.02); }
}

/* ============================================
   IN ACTIE — full bleed feature image
   ============================================ */
.in-actie {
  padding: 4rem var(--gutter) 6rem;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.in-actie-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(26, 40, 88, 0.5);
}

.in-actie-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.in-actie-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 3rem 2.5rem;
  background: linear-gradient(to top, rgba(14, 26, 64, 0.95) 0%, rgba(14, 26, 64, 0.6) 60%, transparent 100%);
  color: var(--cream);
}

.in-actie-caption .section-eyebrow {
  color: var(--mustard);
  margin-bottom: 0.5rem;
}

.in-actie-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 720px;
  color: var(--cream);
}

@media (max-width: 700px) {
  .in-actie-caption {
    padding: 2.5rem 1.5rem 1.5rem;
  }
  .in-actie-frame img {
    aspect-ratio: 4 / 5;
  }
}

/* ============================================
   PRAKTISCH / Practical info block
   ============================================ */
.praktisch {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 880px;
  margin: 4rem auto 0;
  padding: 2.5rem 3rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 4px solid var(--mustard);
  box-shadow: 0 10px 30px -15px rgba(26, 40, 88, 0.2);
}

.praktisch-icon {
  width: 80px;
  height: 80px;
  color: var(--rust);
  flex-shrink: 0;
}
.praktisch-icon svg { width: 100%; height: 100%; }

.praktisch-content .section-eyebrow {
  margin-bottom: 0.3rem;
}

.praktisch-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--blue);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.praktisch-content p {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  opacity: 0.85;
}
.praktisch-content p:last-child { margin-bottom: 0; }

.price-tag {
  display: inline-block;
  background: var(--rust);
  color: var(--cream);
  padding: 0.1em 0.5em;
  border-radius: 4px;
  font-weight: 600;
  font-style: normal;
}

@media (max-width: 700px) {
  .praktisch {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    text-align: left;
    gap: 1rem;
  }
  .praktisch-icon {
    width: 56px;
    height: 56px;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 4rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 6rem var(--gutter);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-photos {
  position: relative;
  height: 680px;
}
.about-photos figure {
  margin: 0;
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
  box-shadow: 0 20px 50px -20px rgba(26, 40, 88, 0.5);
}
.photo-1 {
  width: 70%;
  height: 70%;
  top: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}
.photo-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-2 {
  width: 55%;
  height: 65%;
  bottom: 0;
  right: 0;
  transform: rotate(3deg);
  z-index: 3;
  border: 8px solid var(--paper);
}
.photo-2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--cream);
}

.about-text {
  position: relative;
}

.about-text .section-title {
  font-style: italic;
  font-weight: 400;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  opacity: 0.88;
  margin: 0 0 1.2rem;
}

.signature {
  font-family: var(--font-hand);
  font-size: 2rem;
  color: var(--rust);
  margin-top: 1.5rem !important;
  font-weight: 700;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--blue);
  color: var(--cream);
  padding: 6rem var(--gutter);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, var(--mustard) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, var(--rust) 0%, transparent 40%);
  opacity: 0.15;
  pointer-events: none;
}

.contact-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-eyebrow { color: var(--mustard); }

.contact-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 1.5rem;
  color: var(--cream);
}

.contact-sub {
  font-size: 1.15rem;
  opacity: 0.85;
  margin: 0 0 3rem;
  line-height: 1.6;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  padding: 1.2rem 2.5rem;
  background: var(--mustard);
  color: var(--blue-deep);
  border-radius: 999px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 40px -15px rgba(217, 169, 58, 0.5);
}
.contact-email:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px -10px rgba(217, 169, 58, 0.7);
  background: var(--cream);
}
.contact-email .arrow {
  transition: transform 0.3s ease;
}
.contact-email:hover .arrow { transform: translateX(5px); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--blue-deep);
  color: var(--cream);
  text-align: center;
  padding: 3rem var(--gutter) 2rem;
  font-size: 0.9rem;
  opacity: 0.95;
}
.site-footer .footer-logo {
  height: 110px;
  width: auto;
  margin: 0 auto 1.5rem;
  background: var(--cream);
  padding: 12px 18px;
  border-radius: 8px;
  display: block;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
}
.site-footer p { margin: 0; opacity: 0.7; }

/* ============================================
   SCROLL FADE-IN
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .workshop,
  .about,
  .section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .workshop.in-view,
  .about.in-view,
  .section-header.in-view,
  .no-js .workshop,
  .no-js .about,
  .no-js .section-header {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fallback: if JS doesn't run within ~1s, show everything anyway */
.js-loaded .workshop,
.js-loaded .about,
.js-loaded .section-header {
  /* once JS loaded, observer handles the reveal */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .workshop, .about, .section-header { opacity: 1 !important; transform: none !important; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .workshop {
    grid-template-columns: 1fr !important;
    gap: 2rem;
    margin-bottom: 5rem;
  }
  .workshop:nth-of-type(even) .workshop-content { order: 1; }
  .workshop:nth-of-type(even) .workshop-gallery,
  .workshop:nth-of-type(even) .workshop-visual { order: 2; }

  .workshop-number {
    position: relative;
    top: 0;
    left: 0 !important;
    right: auto !important;
    margin-bottom: 0.5rem;
    font-size: 4rem;
  }

  .workshop--karikatuur .workshop-gallery { height: 380px; }
  .strip-gallery { height: 380px; }
  .zentangle-gallery { height: 360px; }
  .workshop-visual--strip { height: 320px; }
  .workshop-visual--dans { height: 320px; }
  .mandala-gallery { height: 320px; }
  .workshop-visual--relateren { height: 300px; }

  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-photos {
    max-width: 500px;
    margin: 0 auto;
    height: 540px;
  }

  .badge-new { top: -1.5rem; }
}

@media (max-width: 600px) {
  .hero {
    padding-top: 2rem;
    padding-bottom: 4rem;
    min-height: auto;
  }
  .hero-title { font-size: clamp(2.5rem, 14vw, 4rem); }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .workshop--karikatuur .workshop-gallery { height: 340px; }
  .strip-gallery { height: 340px; }
  .zentangle-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .zentangle-gallery img { max-height: 200px; }

  .workshop-visual--strip { height: 280px; }
  .comic-pow { font-size: 2rem; }

  .about-photos { height: 440px; }

  .marquee { font-size: 1rem; }

  .lang-toggle { font-size: 0.85rem; }
  .lang-toggle button { padding: 0.2rem 0.4rem; }

  .logo img { height: 70px; margin-left: -8px; }
}
