/* ============================================================
   Bloom Acoustic — Site styles (scrolly Webflow/Framer feel)
   ============================================================ */

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--lavender-mist);
  color: var(--deep-violet);
  overflow-x: hidden;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.narrow {
  max-width: 880px;
}

/* ============================================================
   STICKY ELEMENTS — header, boek-nu spinner, top-right CTA
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 36px;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--dur-base) var(--ease-out);
}
.brand-logo svg, .brand-logo img {
  width: 200px;
  height: auto;
  display: block;
  fill: var(--deep-violet);
}
.brand-logo:hover { opacity: 0.7; }

/* Header turns subtly when not over hero (scrolled) */
.site-header.scrolled {
  background: rgba(252, 252, 250, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--violet-12);
  padding: 14px 36px;
  transition: padding var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.site-header { transition: padding var(--dur-base) var(--ease-out); }

.nav-center {
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(252, 252, 250, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--violet-12);
  border-radius: 999px;
  padding: 10px 22px;
}
.nav-center a {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--deep-violet);
  text-decoration: none;
  letter-spacing: -0.005em;
  position: relative;
  padding: 4px 0;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-center a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px;
  background: var(--electric-lime);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform var(--dur-base) var(--ease-out);
}
.nav-center a:hover { color: var(--bloom-red); }
.nav-center a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Webflow-style hover: text slides up, replaced by another */
.boek-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  background: var(--deep-violet);
  color: var(--lavender-mist);
  padding: 16px 28px 16px 24px;
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  border: 0;
  transition: background var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.boek-btn:hover {
  background: var(--electric-lime);
  color: var(--deep-violet);
  transform: translateY(-1px);
}
.boek-btn:active { transform: translateY(0); }

.boek-btn .stack {
  display: inline-block;
  position: relative;
  height: 1em;
  overflow: hidden;
  line-height: 1;
  min-width: max-content;
}
.boek-btn .stack span {
  display: block;
  transition: transform var(--dur-base) var(--ease-in-out);
}
.boek-btn .stack span:nth-child(2) {
  position: absolute;
  top: 100%; left: 0;
}
.boek-btn:hover .stack span:nth-child(1) { transform: translateY(-100%); }
.boek-btn:hover .stack span:nth-child(2) { transform: translateY(-100%); }

.boek-btn .arrow {
  display: inline-flex;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--electric-lime);
  color: var(--deep-violet);
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: transform var(--dur-base) var(--ease-out),
              background var(--dur-base) var(--ease-out);
}
.boek-btn:hover .arrow {
  background: var(--deep-violet);
  color: var(--electric-lime);
  transform: rotate(-45deg);
}

/* ---- Sticky rotating boek-nu badge bottom-left ---- */
.boek-spin {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 180px;
  height: 180px;
  z-index: 40;
  text-decoration: none;
  display: block;
  transition: transform var(--dur-base) var(--ease-out),
              filter var(--dur-base) var(--ease-out);
}
.boek-spin:hover {
  transform: scale(1.06);
  filter: drop-shadow(0 12px 32px rgba(64,15,107,0.25));
}
.boek-spin .ring {
  position: absolute;
  inset: 0;
  /* rotation driven by --spin var on the body */
  transform: rotate(var(--scrollRot, 0deg));
  transition: none;
}
.boek-spin .ring svg {
  width: 100%; height: 100%;
  fill: var(--bloom-red);
}
.boek-spin .core {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.boek-spin .core::after {
  content: "";
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--electric-lime);
  box-shadow: 0 0 0 4px var(--lavender-mist);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--lavender-mist);
  overflow: hidden;
  padding: 140px 0 80px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(227, 214, 255, 0.0) 0%,
    rgba(227, 214, 255, 0.0) 35%,
    rgba(227, 214, 255, 0.92) 92%,
    rgba(227, 214, 255, 1) 100%
  );
}
.hero-photo-wrap {
  position: absolute;
  right: -4%;
  top: 12%;
  width: 58%;
  height: 76%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(64,15,107,0.18);
  will-change: transform;
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(252,252,250,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--violet-12);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bloom-red);
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--bloom-red);
  position: relative;
}
.hero-eyebrow .pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: var(--bloom-red);
  opacity: 0.35;
  animation: pulse 1.6s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.7); opacity: 0; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(56px, 9.5vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 28px 0 24px;
  color: var(--deep-violet);
  max-width: 12ch;
}
.hero h1 em {
  font-style: italic;
  color: var(--bloom-red);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.hero h1 .word {
  display: inline;
}
.hero h1 .word > span {
  display: inline-block;
  opacity: 0;
  animation: wordFade 0.7s var(--ease-out) forwards;
}

@keyframes wordFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero .lead {
  font-size: 19px;
  line-height: 1.55;
  max-width: 46ch;
  color: var(--deep-violet);
  margin: 0 0 36px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 700ms forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep-violet);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 900ms forwards;
}
.hero-meta .dot {
  width: 4px; height: 4px;
  border-radius: 999px;
  background: var(--bloom-red);
}
.hero-meta .label {
  opacity: 0.6;
  font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--deep-violet);
  opacity: 0.55;
}
.scroll-cue .line {
  width: 1px;
  height: 36px;
  background: var(--deep-violet);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 100%;
  background: var(--bloom-red);
  animation: cueDown 2.2s var(--ease-in-out) infinite;
}
@keyframes cueDown {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--off-white);
  border-block: 1px solid var(--violet-12);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee-track span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  color: var(--deep-violet);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  white-space: nowrap;
}
.marquee-track .sep {
  width: 14px; height: 14px;
  flex: 0 0 auto;
}
.marquee-track .sep svg { width: 100%; height: 100%; fill: var(--bloom-red); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   STICKY INTRO — text reveals as you scroll over a still
   ============================================================ */
.intro {
  background: var(--off-white);
  padding: 140px 0 160px;
  position: relative;
}
.intro .eyebrow { color: var(--bloom-red); display: block; margin-bottom: 16px; }
.intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 144, "SOFT" 80;
  max-width: 18ch;
  margin: 0 0 36px;
  color: var(--deep-violet);
}
.intro h2 em {
  font-style: italic;
  color: var(--bloom-red);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}
.intro-copy p {
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 22px;
}
.intro-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-md);
}
.intro-photo img { width: 100%; height: 100%; object-fit: cover; }
.intro-photo .tag {
  position: absolute;
  bottom: 16px; left: 16px;
  background: var(--off-white);
  color: var(--deep-violet);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   VALUES / Waarom — sticky scroll feel
   ============================================================ */
.values {
  background: var(--lavender-mist);
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.values .eyebrow { color: var(--bloom-red); display: block; margin-bottom: 18px; }
.values h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 84px);
  line-height: 0.98;
  margin: 0 0 80px;
  color: var(--deep-violet);
  max-width: 16ch;
  letter-spacing: -0.02em;
}
.values h2 em {
  font-style: italic;
  color: var(--bloom-red);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.value-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
.value-row {
  display: grid;
  grid-template-columns: 80px 280px 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--off-white);
  border-radius: 24px;
  padding: 36px 40px;
  border: 1px solid var(--violet-12);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.value-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.value-row .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 56px;
  color: var(--bloom-red);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
}
.value-row h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--deep-violet);
  margin: 0;
}
.value-row p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  color: var(--deep-violet);
}
.value-row .arrow {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--lavender-mist);
  color: var(--deep-violet);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  transition: background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.value-row:hover .arrow {
  background: var(--electric-lime);
  transform: rotate(-45deg);
}

/* ============================================================
   DUO — Liza & Timo, parallax-ish portraits
   ============================================================ */
.duo {
  background: var(--off-white);
  padding: 140px 0 160px;
}
.duo .eyebrow { color: var(--bloom-red); display: block; margin-bottom: 18px; }
.duo .heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 32px;
}
.duo h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--deep-violet);
  margin: 0;
  max-width: 12ch;
}
.duo h2 em {
  font-style: italic;
  color: var(--bloom-red);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.duo-intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--deep-violet);
  max-width: 38ch;
  margin: 0;
  line-height: 1.4;
}

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.member {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.member.offset { margin-top: 80px; }

.member-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 16px 40px rgba(64,15,107,0.16);
}
.member-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.member:hover .member-photo img { transform: scale(1.04); }

.member-photo .badge {
  position: absolute;
  top: 16px; left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--off-white);
  color: var(--deep-violet);
  border-radius: 999px;
  padding: 8px 14px 8px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.member-photo .badge .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: var(--bloom-red);
}

.member h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1;
  color: var(--bloom-red);
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.member h3 small {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--deep-violet);
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: 0.7;
}
.member p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PHILOSOPHY — Deep violet section, big quote
   ============================================================ */
.philosophy {
  background: var(--deep-violet);
  color: var(--lavender-mist);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.philosophy .eyebrow {
  color: var(--electric-lime);
  display: block;
  margin-bottom: 28px;
}
.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 48px;
  max-width: 18ch;
}
.philosophy blockquote em {
  font-style: italic;
  color: var(--electric-lime);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.philosophy .attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--lavender-mist);
  opacity: 0.7;
}
.philosophy .attribution::before {
  content: "";
  width: 40px; height: 1px;
  background: var(--electric-lime);
}

.philosophy .mark-watermark {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 500px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
}
.philosophy .mark-watermark svg {
  width: 100%; height: auto;
  fill: var(--lavender-mist);
}

/* ============================================================
   SETLIST — chips
   ============================================================ */
.setlist {
  background: var(--off-white);
  padding: 140px 0 160px;
}
.setlist .eyebrow { color: var(--bloom-red); display: block; margin-bottom: 16px; }
.setlist h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  color: var(--deep-violet);
  max-width: 14ch;
}
.setlist h2 em {
  font-style: italic;
  color: var(--bloom-red);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.setlist .lead {
  font-size: 18px;
  max-width: 56ch;
  margin: 0 0 56px;
  line-height: 1.55;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 920px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lavender-mist);
  color: var(--deep-violet);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: default;
  transition: all var(--dur-fast) var(--ease-out);
}
.chip:hover {
  background: var(--off-white);
  border-color: var(--bloom-red);
  color: var(--bloom-red);
}
.chip .by {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
  font-variation-settings: "opsz" 24, "SOFT" 80;
  opacity: 0.65;
}

.chip--playing {
  background: var(--deep-violet);
  color: var(--lavender-mist);
  border-color: var(--deep-violet);
}
.chip--playing .by { opacity: 0.55; }

.chip-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--bloom-red);
  color: var(--off-white);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease-out);
}
.chip--playing .chip-play { background: var(--electric-lime); color: var(--deep-violet); }

/* animated bars (playing indicator) */
.chip-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.chip-bars i {
  display: block;
  width: 3px;
  border-radius: 2px;
  background: currentColor;
  animation: bar-bounce 0.8s ease-in-out infinite alternate;
}
.chip-bars i:nth-child(1) { height: 6px; animation-delay: 0s; }
.chip-bars i:nth-child(2) { height: 11px; animation-delay: 0.15s; }
.chip-bars i:nth-child(3) { height: 8px; animation-delay: 0.3s; }
@keyframes bar-bounce {
  from { transform: scaleY(0.4); }
  to   { transform: scaleY(1); }
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--lavender-mist);
  padding: 140px 0 200px;
  position: relative;
  overflow: hidden;
}
.contact .eyebrow { color: var(--bloom-red); display: block; margin-bottom: 16px; }
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 96px);
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--deep-violet);
  margin: 0 0 24px;
  max-width: 14ch;
}
.contact h2 em {
  font-style: italic;
  color: var(--bloom-red);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.contact .lead {
  font-size: 18px;
  max-width: 50ch;
  line-height: 1.55;
  margin: 0 0 48px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-form {
  display: grid;
  gap: 18px;
  background: var(--off-white);
  padding: 36px;
  border-radius: 20px;
  border: 1px solid var(--violet-12);
  box-shadow: var(--shadow-md);
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--deep-violet);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 14px 16px;
  background: var(--lavender-mist);
  color: var(--deep-violet);
  border: 1.5px solid transparent;
  border-radius: 12px;
  outline: none;
  transition: border-color var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--bloom-red);
  background: var(--off-white);
}
.contact-form textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
}
.contact-form .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form .submit {
  margin-top: 8px;
  background: var(--electric-lime);
  color: var(--deep-violet);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  transition: transform var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}
.contact-form .submit:hover {
  transform: translateY(-1px);
  background: #BDE800;
}
.contact-form .submit:active { transform: translateY(0); }

.contact-side {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-side .info-block {
  border-top: 1px dashed var(--violet-24);
  padding-top: 24px;
}
.contact-side .info-block .key {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bloom-red);
  margin-bottom: 8px;
}
.contact-side .info-block .val {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.1;
  color: var(--deep-violet);
}
.contact-side .info-block .val em {
  font-style: italic;
  color: var(--bloom-red);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--deep-violet);
  color: var(--lavender-mist);
  padding: 80px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 80px;
}
.footer-grid .brand-logo svg,
.footer-grid .brand-logo img { fill: var(--lavender-mist); width: 180px; }
.footer-grid p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lavender-mist);
  opacity: 0.7;
  max-width: 28ch;
  margin: 16px 0 0;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--electric-lime);
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: var(--lavender-mist);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  opacity: 0.85;
  transition: color var(--dur-fast) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out);
}
.footer-col a:hover {
  color: var(--electric-lime);
  opacity: 1;
}

.footer-mega {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--lavender-mist);
  opacity: 0.10;
  text-align: center;
  pointer-events: none;
  user-select: none;
  margin: 0 0 48px;
  padding: 0 40px;
  white-space: nowrap;
  overflow: hidden;
}
.footer-mega em {
  font-style: italic;
  color: var(--electric-lime);
  opacity: 0.6;
  font-family: var(--font-serif);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(227, 214, 255, 0.18);
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--lavender-mist);
  opacity: 0.7;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom em {
  font-style: italic;
  color: var(--electric-lime);
  font-family: var(--font-serif);
  font-variation-settings: "opsz" 24, "SOFT" 100;
  opacity: 1;
}

/* ============================================================
   IntersectionObserver-driven reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms var(--ease-out),
              transform 900ms var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 100ms; }
.reveal.delay-2 { transition-delay: 200ms; }
.reveal.delay-3 { transition-delay: 300ms; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .hero-photo-wrap { width: 50%; right: -10%; }
  .intro-grid, .duo-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-row { grid-template-columns: 60px 220px 1fr auto; padding: 28px 28px; gap: 24px;}
  .member.offset { margin-top: 0; }
}
@media (max-width: 720px) {
  .container { padding: 0 22px; }
  .nav-center { display: none; }
  .hero { padding-top: 110px; min-height: auto;}
  .hero-photo-wrap {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    margin-top: 32px;
    border-radius: 20px;
  }
  .hero h1 { font-size: 56px; }
  .footer-grid { grid-template-columns: 1fr; }
  .value-row { grid-template-columns: 1fr; gap: 12px; padding: 24px; }
  .value-row .arrow { display: none; }
  .boek-spin { width: 128px; height: 128px; left: 16px; bottom: 16px; }
  .site-header { padding: 16px 18px; }
  .boek-btn { padding: 12px 18px 12px 16px; font-size: 12px; }
  .brand-logo svg, .brand-logo img { width: 96px; }
  .contact-form .row2 { grid-template-columns: 1fr; }
}
