/* =========================================================
   Nagelstudio Kimly — Editorial Demo
   KJW Marketing
   ========================================================= */

:root {
  /* Palette — Kimly brand pink (matches kimly.nl) */
  --cream: #FCEEEE;          /* soft blush — bg */
  --cream-warm: #F6DCDC;     /* deeper blush for section backgrounds */
  --ink: #1E1815;            /* deep cocoa-black for text */
  --ink-soft: #5A4B41;       /* muted body text */
  --ink-mute: #9B7E7E;       /* meta text — dusty mauve */
  --champagne: #EE8F95;      /* CORAL PINK — primary accent */
  --champagne-dark: #D86F76; /* deeper coral for hovers */
  --peach: #F4C4C7;          /* light blush */
  --sage: #BE848A;           /* dusty rose-mauve — secondary accent */
  --line: #E8CFCF;           /* warm pink hairlines */

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(80px, 12vw, 180px);

  /* Motion */
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; }
/* JS-driven snap — no CSS snap; lets us control timing/easing */

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
}

/* Subtle paper texture — very faint */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 25% 15%, rgba(238, 143, 149, 0.05) 0, transparent 50%),
    radial-gradient(circle at 75% 85%, rgba(190, 132, 138, 0.05) 0, transparent 50%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--champagne); color: var(--cream); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}

.display {
  font-family: var(--serif);
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--champagne-dark);
  font-variation-settings: "opsz" 144;
}

.h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 400;
  font-variation-settings: "opsz" 120;
}

.h2 em { font-style: italic; color: var(--champagne-dark); font-weight: 300; }

.h3 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 500;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.eyebrow .dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--champagne);
  margin: 0 12px 2px;
  vertical-align: middle;
}

.lead {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 52ch;
}

.meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Section number — editorial marginalia */
.section-no {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  color: var(--champagne);
  letter-spacing: 0.05em;
}
.section-no::before { content: "— "; }

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--champagne-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}

.btn-ghost {
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-ghost:hover { color: var(--champagne-dark); border-color: var(--champagne-dark); }

.btn .arrow {
  transition: transform 0.3s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   NAV
   ========================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px var(--pad-x);
  border-bottom-color: var(--line);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.nav-logo em { font-style: italic; color: var(--champagne-dark); font-weight: 300; }
.nav-logo .sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-style: normal;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.nav-links a {
  position: relative;
  padding: 4px 0;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--champagne-dark); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--champagne-dark);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.3s var(--ease);
}
.nav-cta:hover { background: var(--champagne-dark); }

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 4px;
  right: 4px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { top: 15px; transform: rotate(-45deg); }

.nav-mobile { display: none; }

/* =========================================================
   HERO — filmisch
   ========================================================= */

.hero {
  min-height: 100vh;
  padding: 140px var(--pad-x) 60px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}
.hero-eyebrow .line {
  width: 48px;
  height: 1px;
  background: var(--champagne);
}

.hero h1 {
  margin-bottom: 30px;
}

.hero-lead {
  margin-bottom: 44px;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 60px;
}

.hero-phone {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
}
.hero-phone .num {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
}

.hero-meta {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero-meta div .meta { display: block; margin-bottom: 6px; }
.hero-meta div strong {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  display: block;
}

.hero-visual {
  position: relative;
  height: 78vh;
  min-height: 480px;
  max-height: 720px;
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 4px;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.4s var(--ease), opacity 1s var(--ease);
  opacity: 0;
}
.hero-image.active img { opacity: 1; transform: scale(1); }

.hero-image-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(250, 246, 242, 0.92);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}

.hero-image-counter {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(59, 42, 38, 0.6);
  backdrop-filter: blur(8px);
  color: var(--cream);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  z-index: 2;
}

/* small floating "appointments only" badge */
.hero-badge {
  position: absolute;
  left: -28px;
  bottom: 80px;
  width: 130px;
  height: 130px;
  background: var(--champagne);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  z-index: 3;
  animation: badge-rotate 22s linear infinite;
  box-shadow: 0 20px 50px -20px rgba(184, 149, 106, 0.6);
}
.hero-badge span { display: block; padding: 12px; text-align: center; }

@keyframes badge-rotate {
  to { transform: rotate(360deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: var(--pad-x);
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero-scroll .indicator {
  width: 24px;
  height: 40px;
  border: 1px solid var(--ink-mute);
  border-radius: 999px;
  position: relative;
}
.hero-scroll .indicator::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 8px;
  background: var(--champagne);
  border-radius: 2px;
  animation: scroll-hint 2s var(--ease) infinite;
}
@keyframes scroll-hint {
  0% { transform: translate(-50%, 0); opacity: 1; }
  60% { transform: translate(-50%, 14px); opacity: 0; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* =========================================================
   SECTION CHROME
   ========================================================= */

section { position: relative; z-index: 1; }

.section-head {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(20px, 5vw, 80px);
  padding: var(--section-y) var(--pad-x) 60px;
  align-items: end;
}

.section-head .marker {
  position: sticky;
  top: 120px;
}

.section-head h2 {
  max-width: 14ch;
}

/* =========================================================
   QUICK INFO BAR — sticky info strip below nav
   ========================================================= */

.quickbar {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--ink);
  color: var(--cream);
  padding: 10px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(232, 212, 196, 0.1);
  transform: translateY(0);
  transition: transform 0.4s var(--ease), top 0.4s var(--ease);
}
.nav.scrolled + .quickbar { top: 56px; }

.qb-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qb-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  opacity: 0.7;
}
.qb-value {
  color: var(--cream);
  font-weight: 500;
}
a.qb-value { transition: color 0.3s var(--ease); }
a.qb-value:hover { color: var(--champagne); }

.qb-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fb072;
  box-shadow: 0 0 0 0 rgba(95, 176, 114, 0.7);
  animation: qb-pulse 2.4s ease-out infinite;
}
@keyframes qb-pulse {
  0% { box-shadow: 0 0 0 0 rgba(95, 176, 114, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(95, 176, 114, 0); }
  100% { box-shadow: 0 0 0 0 rgba(95, 176, 114, 0); }
}

.qb-sep {
  width: 1px;
  height: 16px;
  background: rgba(232, 212, 196, 0.2);
}

.qb-cta {
  margin-left: 14px;
  padding: 8px 16px;
  background: var(--champagne);
  color: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.qb-cta:hover { background: var(--cream); transform: translateY(-1px); }

/* Push nav down so it doesn't overlap quickbar reflow on small screens */
@media (max-width: 1100px) {
  .quickbar { gap: 18px; font-size: 12px; padding: 10px 22px; }
  .qb-item:nth-child(5), /* hide studio address on tablet */
  .quickbar .qb-sep:nth-of-type(2) { display: none; }
}

@media (max-width: 720px) {
  .quickbar {
    flex-direction: column;
    gap: 4px;
    padding: 8px 16px;
    align-items: center;
  }
  .quickbar .qb-sep { display: none; }
  .qb-cta { display: none; }
  .qb-item { gap: 6px; }
  .qb-label { font-size: 10px; }
  .qb-value { font-size: 12px; }
  /* only show the "vandaag open" item on mobile */
  .quickbar .qb-item:not(:first-child) { display: none; }
}

/* Hero needs extra top padding to clear nav + quickbar */
.hero { padding-top: 180px; }
@media (max-width: 720px) {
  .hero { padding-top: 140px; }
}

/* =========================================================
   FILMSTRIP CTA — per chapter
   ========================================================= */

.film-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 8px;
  align-self: flex-start;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
  box-shadow: 0 12px 40px -10px rgba(0,0,0,0.4);
}
.film-cta:hover {
  background: var(--champagne);
  color: var(--ink);
  transform: translateY(-2px);
}
.film-cta .arr { transition: transform 0.3s var(--ease); }
.film-cta:hover .arr { transform: translateX(4px); }

.film-pos-tr .film-cta { align-self: flex-end; }
.film-pos-c .film-cta, .film-pos-bc .film-cta { align-self: center; }
@media (max-width: 720px) {
  .film-pos-tr .film-cta, .film-pos-c .film-cta, .film-pos-bc .film-cta { align-self: flex-start; }
}

.filmstrip {
  position: relative;
  background: var(--ink);
  color: var(--cream);
}

.film-intro {
  min-height: 80vh;
  padding: var(--section-y) var(--pad-x);
  background: var(--cream);
  color: var(--ink);
}

.film-intro-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.film-intro-content { max-width: 540px; }
.film-intro .section-no { margin-bottom: 28px; }
.film-intro h2 { margin-bottom: 28px; max-width: 14ch; }
.film-intro .lead { max-width: 50ch; margin-bottom: 60px; }

/* Preview stack — 3 photos fanned out + meta */
.film-intro-stack {
  position: relative;
  height: 540px;
  display: block;
}

.stack-tile {
  position: absolute;
  width: 240px;
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px -20px rgba(30, 24, 21, 0.4);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.stack-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 24, 21, 0.55), transparent 55%);
  pointer-events: none;
}
.stack-tile .stack-num {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 22px;
  font-weight: 300;
  margin-right: 12px;
}
.stack-tile .stack-label {
  position: relative;
  z-index: 1;
  color: var(--cream);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  align-self: center;
}

.stack-1 {
  top: 0;
  right: 50%;
  transform: translateX(40%) rotate(-6deg);
}
.stack-2 {
  top: 60px;
  right: 20%;
  transform: rotate(3deg);
  z-index: 2;
}
.stack-3 {
  top: 140px;
  right: 0;
  transform: translateX(-10%) rotate(-3deg);
  width: 220px;
  height: 300px;
}

.film-intro-stack:hover .stack-1 { transform: translateX(20%) rotate(-10deg); }
.film-intro-stack:hover .stack-2 { transform: translateY(-8px) rotate(2deg); }
.film-intro-stack:hover .stack-3 { transform: translateX(0) rotate(-1deg); }

.stack-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  padding-right: 24px;
  border-top: 1px solid var(--line);
  width: 260px;
}
.stack-meta .meta-divider {
  width: 24px;
  height: 1px;
  background: var(--champagne);
}

@media (max-width: 1100px) {
  .film-intro-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .film-intro-stack {
    height: 380px;
    margin: 0 auto;
    max-width: 480px;
  }
  .stack-1, .stack-2, .stack-3 { width: 180px; height: 240px; }
  .stack-2 { width: 180px; height: 240px; }
  .stack-3 { width: 170px; height: 220px; top: 100px; }
}
@media (max-width: 720px) {
  .film-intro-stack {
    height: 320px;
  }
  .stack-1, .stack-2, .stack-3 { width: 150px; height: 200px; }
  .stack-3 { width: 140px; height: 185px; top: 90px; }
  .stack-meta { width: auto; }
}

.film-scroll-hint {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.film-scroll-hint svg {
  animation: scroll-down 1.8s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(-4px); opacity: 0.6; }
  50% { transform: translateY(4px); opacity: 1; }
  100% { transform: translateY(-4px); opacity: 0.6; }
}

.film-chapter {
  position: relative;
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  display: grid;
}

/* Fallback for mobile/iOS where background-attachment: fixed is buggy */
@supports (-webkit-touch-callout: none) {
  .film-chapter { background-attachment: scroll; }
}

.film-chapter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 22, 20, 0.5) 0%,
    rgba(26, 22, 20, 0.15) 35%,
    rgba(26, 22, 20, 0.15) 65%,
    rgba(26, 22, 20, 0.7) 100%
  );
  z-index: 1;
}

.film-overlay {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vw, 100px);
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Position variants */
.film-pos-bl { align-self: end; justify-self: start; }
.film-pos-tr { align-self: start; justify-self: end; text-align: right; }
.film-pos-c  { align-self: center; justify-self: center; text-align: center; max-width: 720px; }
.film-pos-bc { align-self: end; justify-self: center; text-align: center; }

.film-pos-tr .film-meta,
.film-pos-c .film-meta,
.film-pos-bc .film-meta {
  justify-content: flex-end;
}
.film-pos-c .film-meta,
.film-pos-bc .film-meta {
  justify-content: center;
}

.film-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.film-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--champagne);
  font-weight: 300;
  text-transform: none;
}
.film-sep {
  width: 36px;
  height: 1px;
  background: var(--champagne);
}
.film-cat { color: var(--peach); }

.film-title {
  font-family: var(--serif);
  font-size: clamp(40px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 300;
  color: var(--cream);
  font-variation-settings: "opsz" 144, "SOFT" 80;
}
.film-title em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 300;
}

.film-desc {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.45;
  color: var(--cream);
  opacity: 0.9;
  max-width: 36ch;
  font-weight: 300;
}
.film-pos-c .film-desc, .film-pos-bc .film-desc { margin-left: auto; margin-right: auto; }
.film-pos-tr .film-desc { margin-left: auto; }

.film-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 16px;
  border: 1px solid rgba(245, 237, 227, 0.3);
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  backdrop-filter: blur(8px);
  background: rgba(26, 22, 20, 0.15);
}
.film-pos-tr .film-tag { align-self: flex-end; }
.film-pos-c .film-tag, .film-pos-bc .film-tag { align-self: center; }

/* Chapter index — left-side rail with labels + progress */
.film-index {
  position: fixed;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.film-index.visible {
  opacity: 1;
  pointer-events: auto;
}

.film-index-track {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px 0;
}

.film-index button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: left;
  transition: opacity 0.3s var(--ease);
  opacity: 0.55;
  white-space: nowrap;
}
.film-index button:hover { opacity: 1; }

.film-index .dot {
  width: 28px;
  height: 1px;
  background: var(--cream);
  flex-shrink: 0;
  transition: width 0.4s var(--ease), background 0.3s var(--ease), height 0.3s var(--ease);
  border-radius: 1px;
}

.film-index button .label {
  font-weight: 500;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  display: inline-block;
}
.film-index button .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--champagne);
  text-transform: none;
  font-weight: 300;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.film-index:hover button .label,
.film-index:hover button .num,
.film-index button.active .label,
.film-index button.active .num {
  opacity: 1;
  transform: none;
}

.film-index button.active {
  opacity: 1;
}
.film-index button.active .dot {
  width: 56px;
  background: var(--champagne);
  height: 2px;
}

/* Progress indicator on left rail — "n / N" */
.film-progress {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-style: italic;
  color: var(--cream);
}
.film-progress .cur {
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: var(--champagne);
  font-variation-settings: "opsz" 144;
}
.film-progress .sep {
  width: 24px;
  height: 1px;
  background: rgba(245, 237, 227, 0.4);
  align-self: center;
}
.film-progress .total {
  font-size: 14px;
  opacity: 0.6;
}

/* Next / Prev floating arrow buttons */
.film-controls {
  position: fixed;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.film-controls.visible {
  opacity: 1;
  pointer-events: auto;
}
.film-controls button {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(30, 24, 21, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 237, 227, 0.2);
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.film-controls button:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: scale(1.05);
}
.film-controls button svg { width: 18px; height: 18px; }
.film-controls button:disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* Bottom "next chapter →" hint — large, friendly */
.film-next-hint {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.film-next-hint.visible {
  opacity: 1;
  pointer-events: auto;
}
.film-next-hint button {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 24px;
  background: rgba(30, 24, 21, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(245, 237, 227, 0.15);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.film-next-hint button:hover {
  background: var(--champagne);
  border-color: var(--champagne);
  color: var(--ink);
}
.film-next-hint button .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0;
}

@media (max-width: 1100px) {
  .film-index { left: 16px; }
  .film-controls { right: 16px; }
  .film-index button .label { display: none; }
}
@media (max-width: 720px) {
  .film-index, .film-controls, .film-next-hint { display: none; }
}

.film-foot {
  background: var(--ink);
  padding: 100px var(--pad-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(232, 212, 196, 0.15);
}
.film-foot p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.3;
  color: var(--cream);
  max-width: 24ch;
  font-weight: 300;
}
.film-foot .btn-ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.film-foot .btn-ghost:hover { color: var(--champagne); border-color: var(--champagne); }

/* Reveal animation for film-overlay content */
.film-overlay > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease);
}
.film-chapter.in-view .film-overlay > * { opacity: 1; transform: none; }
.film-chapter.in-view .film-overlay > *:nth-child(2) { transition-delay: 0.15s; }
.film-chapter.in-view .film-overlay > *:nth-child(3) { transition-delay: 0.3s; }
.film-chapter.in-view .film-overlay > *:nth-child(4) { transition-delay: 0.45s; }

/* slow zoom effect on the bg while in view */
.film-chapter.in-view::before {
  animation: chapter-pulse 6s ease-in-out infinite alternate;
}
@keyframes chapter-pulse {
  to { background: linear-gradient(180deg, rgba(26, 22, 20, 0.6) 0%, rgba(26, 22, 20, 0.2) 50%, rgba(26, 22, 20, 0.75) 100%); }
}

/* Mobile adjustments */
@media (max-width: 720px) {
  .film-intro { min-height: 60vh; }
  .film-chapter { background-attachment: scroll; }
  .film-overlay {
    padding: 36px 24px;
    max-width: 100%;
    width: 100%;
    text-align: left !important;
  }
  .film-pos-bl, .film-pos-tr, .film-pos-c, .film-pos-bc {
    align-self: end;
    justify-self: start;
  }
  .film-pos-tr .film-meta, .film-pos-c .film-meta, .film-pos-bc .film-meta { justify-content: flex-start; }
  .film-pos-tr .film-desc, .film-pos-c .film-desc, .film-pos-bc .film-desc { margin-left: 0; margin-right: 0; }
  .film-pos-tr .film-tag, .film-pos-c .film-tag, .film-pos-bc .film-tag { align-self: flex-start; }
  .film-title { font-size: 36px; }
  .film-index { display: none; }
  .film-foot { padding: 60px 22px; }
}

/* old portfolio styles kept for any references — hidden if unused */
.portfolio { display: none; }

/* =========================================================
   PULL QUOTE — between sections
   ========================================================= */

.quote-band {
  padding: clamp(80px, 12vw, 160px) var(--pad-x);
  background: var(--ink);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: """;
  position: absolute;
  top: -40px;
  left: 40px;
  font-family: var(--serif);
  font-size: 380px;
  line-height: 1;
  color: var(--champagne);
  opacity: 0.18;
}

.quote-band blockquote {
  max-width: 1100px;
  margin: 0 auto;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144;
  position: relative;
  z-index: 2;
}
.quote-band blockquote em { color: var(--champagne); font-style: italic; }

.quote-band cite {
  display: block;
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 12px;
  font-style: normal;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--peach);
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
  padding: 0 var(--pad-x) var(--section-y);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.service {
  padding: 50px 40px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 36px;
  align-items: start;
  transition: background 0.4s var(--ease);
  position: relative;
}

.service:nth-child(odd) { border-right: 1px solid var(--line); }

.service:hover { background: var(--cream-warm); }

.service .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 18px;
  font-weight: 300;
}

.service-body h3 { margin-bottom: 12px; }
.service-body p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 20px;
  max-width: 42ch;
}

.service-price {
  font-family: var(--serif);
  font-size: 14px;
  color: var(--ink-soft);
}
.service-price strong {
  display: block;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  margin-top: 4px;
  font-variation-settings: "opsz" 120;
}

.service-cta {
  align-self: end;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-cta:hover { color: var(--champagne-dark); border-color: var(--champagne-dark); }
.service-cta .arr { transition: transform 0.3s var(--ease); }
.service-cta:hover .arr { transform: translateX(4px); }

/* =========================================================
   ABOUT KIMLY
   ========================================================= */

.about {
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  background: var(--cream-warm);
}

.about-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.about-image .caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(250, 246, 242, 0.95);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border-radius: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
}

.about-content .h2 { margin: 18px 0 28px; }

.about-content .lead { margin-bottom: 36px; }

.usps {
  list-style: none;
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}
.usps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 16px;
}
.usps li:last-child { border-bottom: 1px solid var(--line); }
.usps .check {
  width: 24px;
  height: 24px;
  background: var(--champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.about-stats .stat strong {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  display: block;
  font-variation-settings: "opsz" 144;
}
.about-stats .stat strong .plus { color: var(--champagne); }
.about-stats .stat .lbl {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* =========================================================
   BEFORE / AFTER
   ========================================================= */

.beforeafter {
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.ba-text h3 { margin: 18px 0 20px; }
.ba-text p { color: var(--ink-soft); margin-bottom: 14px; max-width: 40ch; }

.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  cursor: ew-resize;
  user-select: none;
  background: var(--cream-warm);
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ba-after {
  clip-path: inset(0 0 0 50%);
  transition: clip-path 0.1s linear;
}
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--cream);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}
.ba-handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}
.ba-handle::after {
  content: "‹ ›";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ink);
  letter-spacing: 4px;
}
.ba-label {
  position: absolute;
  top: 16px;
  background: rgba(250, 246, 242, 0.95);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}
.ba-label.before { left: 16px; }
.ba-label.after { right: 16px; background: rgba(59, 42, 38, 0.92); color: var(--cream); }

/* =========================================================
   REVIEWS
   ========================================================= */

.reviews {
  padding: var(--section-y) var(--pad-x);
  background: var(--ink);
  color: var(--cream);
}

.reviews-head {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 80px;
}

.reviews .section-no { color: var(--peach); }
.reviews .section-no::before { content: "— "; }

.reviews-head h2 { max-width: 16ch; color: var(--cream); }
.reviews-head h2 em { color: var(--champagne); }

.reviews-rating {
  text-align: right;
}
.reviews-rating .stars { color: var(--champagne); font-size: 18px; letter-spacing: 4px; }
.reviews-rating .num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  display: block;
  margin: 6px 0 4px;
  font-variation-settings: "opsz" 144;
}
.reviews-rating .lbl {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  opacity: 0.7;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.review {
  padding: 36px;
  border: 1px solid rgba(232, 212, 196, 0.18);
  border-radius: 4px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.review:hover {
  transform: translateY(-6px);
  border-color: var(--champagne);
}

.review .stars {
  color: var(--champagne);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 24px;
}
.review blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.35;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 96;
}
.review-by {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(232, 212, 196, 0.15);
}
.review-by .avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--champagne);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
}
.review-by strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px;
}
.review-by .type {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  opacity: 0.7;
}

/* =========================================================
   PRAKTISCH (booking + map)
   ========================================================= */

.praktisch {
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.prak-col {
  padding: 60px clamp(20px, 4vw, 60px);
}
.prak-col:first-child {
  border-right: 1px solid var(--line);
}

.prak-col h3 { margin: 14px 0 28px; }

.prak-block {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.prak-block:last-child { border-bottom: 0; margin-bottom: 0; }

.prak-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 10px;
}

.prak-value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
  font-variation-settings: "opsz" 120;
}
.prak-value a:hover { color: var(--champagne-dark); }

.prak-note {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 15px;
  margin-top: 8px;
  font-family: var(--serif);
}

.hours {
  list-style: none;
  display: grid;
  gap: 10px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 15px;
}
.hours li.closed { color: var(--ink-mute); }
.hours .day { font-family: var(--serif); font-style: italic; }

.map-wrap {
  margin-top: 28px;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) sepia(0.15) brightness(1.02);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq {
  padding: var(--section-y) var(--pad-x);
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.faq-head .section-no { display: inline-block; margin-bottom: 24px; }
.faq-head h2 { margin-bottom: 28px; }
.faq-head p { color: var(--ink-soft); margin-bottom: 24px; max-width: 36ch; }

.faq-list { border-top: 1px solid var(--line); }

.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  width: 100%;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq-q:hover { color: var(--champagne-dark); }
.faq-q .plus {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  position: relative;
  margin-left: 24px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-q .plus::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.open .faq-q .plus {
  background: var(--ink);
  border-color: var(--ink);
}
.faq-item.open .faq-q .plus::before,
.faq-item.open .faq-q .plus::after { background: var(--cream); }
.faq-item.open .faq-q .plus::after { transform: translate(-50%, -50%) rotate(0); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.faq-a-inner {
  padding-bottom: 28px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  max-width: 56ch;
}

/* =========================================================
   CTA BAND
   ========================================================= */

.cta-band {
  padding: clamp(100px, 15vw, 200px) var(--pad-x);
  text-align: center;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.cta-band .section-no { margin-bottom: 30px; display: inline-block; }
.cta-band h2 { max-width: 16ch; margin: 0 auto 36px; }
.cta-band p { max-width: 50ch; margin: 0 auto 48px; color: var(--ink-soft); }
.cta-band-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px var(--pad-x) 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(232, 212, 196, 0.15);
}

.footer-brand .logo {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144;
}
.footer-brand .logo em { color: var(--champagne); font-style: italic; font-weight: 300; }
.footer-brand p { color: var(--peach); opacity: 0.7; max-width: 36ch; font-size: 14px; line-height: 1.6; }

.footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
}

.footer ul { list-style: none; }
.footer li { margin-bottom: 12px; font-size: 14px; }
.footer li a { color: var(--peach); opacity: 0.8; transition: opacity 0.3s var(--ease), color 0.3s var(--ease); }
.footer li a:hover { color: var(--cream); opacity: 1; }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(232, 212, 196, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.socials a:hover { background: var(--champagne); border-color: var(--champagne); color: var(--ink); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  font-size: 12px;
  color: var(--peach);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.footer-bottom .kjw {
  color: var(--champagne);
  font-style: italic;
  font-family: var(--serif);
  font-size: 14px;
}

/* =========================================================
   STICKY MOBILE CTA
   ========================================================= */

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  gap: 8px;
}
.sticky-cta a {
  flex: 1;
  padding: 14px;
  border-radius: 999px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 30px -8px rgba(0, 0, 0, 0.25);
}
.sticky-cta .sc-primary { background: var(--ink); color: var(--cream); }
.sticky-cta .sc-secondary { background: var(--cream); color: var(--ink); border: 1px solid var(--line); }

/* =========================================================
   CURSOR GLOW (desktop only)
   ========================================================= */

.cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 143, 149, 0.18) 0%, rgba(238, 143, 149, 0) 60%);
  pointer-events: none;
  z-index: 1;
  mix-blend-mode: multiply;
  transition: transform 0.18s ease-out, opacity 0.4s ease-out;
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(26, 22, 20, 0.95);
  backdrop-filter: blur(16px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 5vh 5vw;
  cursor: zoom-out;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border-radius: 4px;
}
.lightbox-meta {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: var(--cream);
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease);
  font-family: var(--serif);
  font-size: 22px;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.1); }
.lightbox-close { top: 24px; right: 24px; }
.lightbox-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 24px; top: 50%; transform: translateY(-50%); }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* split-text style (line-by-line) */
.split-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
}
.split-line span {
  display: inline-block;
  padding-bottom: 0.14em;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}
.split-line span.in { transform: translateY(0); }
.split-line:nth-child(2) span { transition-delay: 0.12s; }
.split-line:nth-child(3) span { transition-delay: 0.24s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 120px; min-height: auto; }
  .hero-visual { height: 60vh; min-height: 360px; }
  .hero-badge { left: auto; right: -10px; bottom: -20px; width: 110px; height: 110px; font-size: 12px; }
  .hero-scroll { display: none; }

  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .section-head .marker { position: static; }

  .portfolio-grid { gap: 12px; }
  .w-tall, .w-sq, .w-portrait, .w-third { grid-column: span 6; }
  .w-wide, .w-half { grid-column: span 12; }

  .services-grid { grid-template-columns: 1fr; }
  .service:nth-child(odd) { border-right: 0; }
  .service { grid-template-columns: 40px 1fr; padding: 36px 24px; gap: 20px; }
  .service-cta { grid-column: 1 / -1; justify-self: start; }

  .about { grid-template-columns: 1fr; gap: 50px; }
  .beforeafter { grid-template-columns: 1fr; gap: 40px; }

  .reviews-head { grid-template-columns: 1fr; gap: 24px; }
  .reviews-rating { text-align: left; }
  .reviews-grid { grid-template-columns: 1fr; gap: 20px; }

  .praktisch { grid-template-columns: 1fr; }
  .prak-col:first-child { border-right: 0; border-bottom: 1px solid var(--line); }

  .faq { grid-template-columns: 1fr; gap: 40px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 720px) {
  :root { --pad-x: 22px; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }

  .nav-mobile {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--cream);
    padding: 80px 22px 40px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
    flex-direction: column;
    gap: 4px;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile a {
    font-family: var(--serif);
    font-size: 28px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-mobile a:last-child {
    margin-top: 20px;
    border: 0;
    background: var(--ink);
    color: var(--cream);
    text-align: center;
    border-radius: 999px;
    padding: 16px;
    font-size: 14px;
    font-family: var(--sans);
  }

  .display { font-size: clamp(48px, 14vw, 80px); }

  .w-tall, .w-sq, .w-portrait, .w-third, .w-half { grid-column: span 6; }
  .w-wide, .w-pano { grid-column: span 12; }
  .w-pano { aspect-ratio: 4 / 3; }

  .sticky-cta { display: flex; }
  body { padding-bottom: 80px; }

  .hero-badge { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }

  .cursor-glow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
