/* ============================================================
   Kelvin Kioi Nganga — Artist site (mock v2, real content)
   ============================================================ */

:root {
  --bg: #0d0c0f;
  --bg-soft: #16141a;
  --panel: #1c1a21;
  --line: rgba(255, 255, 255, 0.1);
  --ink: #f4f1ea;
  --muted: #a49fb0;
  --accent: #ff5a1f;   /* Kelvin's warm sunset orange */
  --accent-2: #ffd23f;
  --pink: #ff3d7f;
  --radius: 18px;
  --maxw: 1240px;
  --font: "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.wrap { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent-2);
  font-weight: 600;
}

h1, h2, h3 { line-height: 1.05; font-weight: 700; letter-spacing: -0.02em; }

/* ---------- progress + header ---------- */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--pink), var(--accent-2));
  z-index: 100;
}

.site-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  backdrop-filter: blur(14px);
  background: rgba(13, 12, 15, 0.6);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: 0.01em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--pink));
  color: #fff;
}
.site-header nav { display: flex; gap: 26px; }
.site-header nav a { color: var(--muted); font-size: 0.92rem; transition: color 0.2s; }
.site-header nav a:hover { color: var(--ink); }
.nav-cta {
  padding: 10px 20px; border-radius: 999px; font-size: 0.9rem; font-weight: 600;
  background: var(--ink); color: var(--bg);
  transition: transform 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); }
@media (max-width: 820px) { .site-header nav { display: none; } }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(40px, 8vw, 96px) 0 clamp(30px, 5vw, 60px); }
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin: 18px 0; }
.hero h1 .accent { color: var(--accent); }
.hero-text { color: var(--muted); font-size: 1.1rem; max-width: 42ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.tags { display: flex; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.tag { font-size: 0.78rem; color: var(--muted); border: 1px solid var(--line); padding: 6px 14px; border-radius: 999px; }

.hero-visual {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual .float {
  position: absolute; width: 40%; border-radius: 12px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55); border: 3px solid rgba(255,255,255,0.08);
}
.hero-visual .float.a { bottom: -18px; left: -26px; animation: bob 6s ease-in-out infinite; }
.hero-visual .float.b { top: -20px; right: -22px; width: 32%; animation: bob 7s ease-in-out infinite reverse; }
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; }
  .hero-visual .float.a { left: 0; }
}

.button {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; border: none;
}
.button.primary { background: var(--accent); color: #fff; }
.button.primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(255,90,31,0.35); }
.button.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.button.secondary:hover { border-color: var(--ink); }
.button.full { width: 100%; justify-content: center; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 16px 0; margin: clamp(30px,5vw,60px) 0; }
.marquee-track { display: flex; gap: 40px; white-space: nowrap; animation: scroll 26s linear infinite; }
.marquee-track span { font-size: clamp(1.4rem, 3vw, 2.4rem); font-weight: 800; letter-spacing: -0.02em; color: transparent; -webkit-text-stroke: 1px var(--muted); }
.marquee-track span:nth-child(3n) { color: var(--accent); -webkit-text-stroke: 0; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.band { padding: clamp(50px, 8vw, 100px) 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin: 12px 0; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* about */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px, 4vw, 60px); align-items: center; }
.about-portrait { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.about-copy p { color: var(--muted); margin-bottom: 16px; font-size: 1.05rem; }
.about-copy p strong { color: var(--ink); font-weight: 600; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } .about-portrait { max-width: 380px; } }

/* gallery masonry */
.gallery { columns: 3; column-gap: 16px; }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 560px) { .gallery { columns: 1; } }
.art {
  position: relative; break-inside: avoid; margin-bottom: 16px; border-radius: 14px; overflow: hidden;
  cursor: pointer;
}
.art img { width: 100%; transition: transform 0.6s ease; }
.art:hover img { transform: scale(1.05); }
.art figcaption {
  position: absolute; inset: auto 0 0 0; padding: 18px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  opacity: 0; transform: translateY(10px); transition: 0.3s;
}
.art:hover figcaption { opacity: 1; transform: none; }
.art figcaption h3 { font-size: 1.05rem; }
.art figcaption span { font-size: 0.8rem; color: var(--accent-2); }

/* live / video */
.live-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.video-tile { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 320px; }
.video-tile img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; filter: brightness(0.75); }
.video-tile .meta { position: relative; z-index: 2; padding: 26px; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.video-tile .meta h3 { font-size: 1.4rem; }
.video-tile .meta p { color: rgba(255,255,255,0.8); }
.play {
  position: absolute; z-index: 2; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 74px; height: 74px; border-radius: 50%; background: rgba(255,255,255,0.16);
  backdrop-filter: blur(6px); border: 2px solid rgba(255,255,255,0.7); display: grid; place-items: center;
  transition: 0.25s;
}
.video-tile:hover .play { background: var(--accent); border-color: var(--accent); transform: translate(-50%,-50%) scale(1.08); }
.play::after { content: ""; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent #fff; margin-left: 5px; }
.live-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.live-side .art { margin: 0; height: 100%; }
.live-side .art img { height: 100%; object-fit: cover; }
@media (max-width: 820px) { .live-grid { grid-template-columns: 1fr; } }

/* photography strip */
.photo-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.photo-strip .art { margin: 0; aspect-ratio: 3/4; }
.photo-strip .art img { height: 100%; object-fit: cover; }
@media (max-width: 720px) { .photo-strip { grid-template-columns: repeat(2, 1fr); } }

/* services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 900px) { .services { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services { grid-template-columns: 1fr; } }
.service {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: 0.25s;
}
.service:hover { transform: translateY(-4px); border-color: var(--accent); }
.service .num { color: var(--accent); font-weight: 800; font-size: 0.85rem; }
.service h3 { font-size: 1.25rem; margin: 10px 0; }
.service p { color: var(--muted); font-size: 0.95rem; }

/* workshops */
.workshops { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .workshops { grid-template-columns: 1fr; } }
.ws {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; display: flex; flex-direction: column; gap: 10px;
}
.ws.featured { background: linear-gradient(160deg, rgba(255,90,31,0.16), var(--bg-soft)); border-color: var(--accent); }
.ws .when { color: var(--accent-2); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; }
.ws h3 { font-size: 1.3rem; }
.ws p { color: var(--muted); font-size: 0.95rem; flex: 1; }
.ws .foot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; }
.ws .price { font-size: 1.2rem; font-weight: 700; }
.ws .pick { padding: 9px 18px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 0.85rem; font-weight: 600; border: none; cursor: pointer; }
.ws .pick:hover { filter: brightness(1.1); }

/* ---------- BOOKING + PAYMENT ---------- */
.booking-panel {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 24px;
  overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
}
@media (max-width: 900px) { .booking-panel { grid-template-columns: 1fr; } }
.booking-left { padding: clamp(28px, 4vw, 48px); border-right: 1px solid var(--line); }
.booking-left h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 12px 0 14px; }
.booking-left p { color: var(--muted); }
.steps { margin-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.step { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.95rem; }
.step b { color: var(--ink); }
.dot { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-size: 0.8rem; font-weight: 700; }

.booking-right { padding: clamp(24px, 3vw, 36px); }

/* calendly-style widget */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.cal-head .sel-ws { font-weight: 700; }
.cal-head .badge { font-size: 0.7rem; color: var(--accent-2); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.cal-month { color: var(--muted); font-size: 0.85rem; margin-bottom: 14px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cal-grid .dow { text-align: center; font-size: 0.68rem; color: var(--muted); padding-bottom: 4px; }
.cal-day {
  aspect-ratio: 1; border: 1px solid var(--line); background: transparent; color: var(--ink);
  border-radius: 10px; cursor: pointer; font-size: 0.9rem; transition: 0.15s;
}
.cal-day:hover:not(:disabled) { border-color: var(--accent); }
.cal-day:disabled { color: rgba(255,255,255,0.2); cursor: default; }
.cal-day.on { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 700; }
.slots { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.slot { padding: 8px 14px; border: 1px solid var(--line); border-radius: 10px; background: transparent; color: var(--ink); cursor: pointer; font-size: 0.85rem; }
.slot:hover { border-color: var(--accent); }
.slot.on { background: var(--accent); border-color: var(--accent); color: #fff; }

.summary { margin-top: 20px; padding: 16px; border: 1px dashed var(--line); border-radius: 12px; font-size: 0.9rem; color: var(--muted); }
.summary b { color: var(--ink); }

/* payment modal */
.modal-back {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; z-index: 200; padding: 20px;
}
.modal-back.open { display: flex; }
.modal {
  width: min(440px, 100%); background: var(--panel); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px; animation: pop 0.25s ease;
}
@keyframes pop { from { transform: translateY(20px) scale(0.97); opacity: 0; } }
.modal h3 { font-size: 1.4rem; }
.modal .line { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.modal .line.total { color: var(--ink); font-weight: 700; font-size: 1.15rem; border-bottom: none; }
.field { margin-top: 14px; }
.field label { display: block; font-size: 0.78rem; color: var(--muted); margin-bottom: 6px; }
.field input {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--bg); color: var(--ink); font-size: 0.95rem;
}
.field input:focus { outline: none; border-color: var(--accent); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pay-brands { display: flex; gap: 8px; align-items: center; color: var(--muted); font-size: 0.75rem; margin-top: 16px; }
.pay-brands .chip { border: 1px solid var(--line); border-radius: 6px; padding: 3px 8px; font-weight: 700; letter-spacing: 0.03em; }
.close-x { float: right; background: none; border: none; color: var(--muted); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.success { text-align: center; padding: 20px 0; }
.success .check { width: 64px; height: 64px; border-radius: 50%; background: #1db954; display: grid; place-items: center; margin: 0 auto 16px; font-size: 2rem; }

/* lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); display: none; align-items: center; justify-content: center; z-index: 300; padding: 30px; cursor: zoom-out; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; border-radius: 8px; }

/* footer */
.site-footer { border-top: 1px solid var(--line); padding: 50px 0; margin-top: 40px; }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.site-footer h3 { font-size: 1.6rem; margin-bottom: 8px; }
.site-footer a.mail { color: var(--accent); font-size: 1.1rem; }
.site-footer .small { color: var(--muted); font-size: 0.82rem; }
.mock-note {
  margin-top: 30px; padding: 14px 18px; border: 1px dashed var(--accent);
  border-radius: 12px; color: var(--accent-2); font-size: 0.82rem; background: rgba(255,90,31,0.06);
}

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Motion layer — custom cursor, glow, parallax
   ============================================================ */

/* animated glow behind hero */
.hero { z-index: 0; }
.hero::before {
  content: ""; position: absolute; inset: -15% -10% auto -10%; height: 130%; z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(600px circle at 20% 30%, rgba(255,90,31,0.20), transparent 60%),
    radial-gradient(520px circle at 82% 18%, rgba(255,61,127,0.18), transparent 60%),
    radial-gradient(520px circle at 60% 85%, rgba(255,210,63,0.12), transparent 60%);
  filter: blur(8px);
  animation: heroGlow 18s ease-in-out infinite alternate;
}
.hero-inner { position: relative; z-index: 1; }
@keyframes heroGlow {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(3%,2%,0) scale(1.08); }
  100% { transform: translate3d(-3%,-2%,0) scale(1.03); }
}
.hero-visual { transition: transform 0.25s ease-out; will-change: transform; }

/* custom funky cursor (fine pointers only) */
body.custom-cursor,
body.custom-cursor * { cursor: none !important; }
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px; margin: -20px 0 0 -20px;
  border: 2px solid rgba(255,255,255,0.7); border-radius: 50%;
  pointer-events: none; z-index: 99999; mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, margin 0.2s, border-color 0.2s, background 0.2s;
}
.cursor-ring.big { width: 74px; height: 74px; margin: -37px 0 0 -37px; background: rgba(255,255,255,0.08); }
.cursor-cross { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 99999; mix-blend-mode: difference; }
.cursor-cross span { position: absolute; background: #fff; }
.cursor-cross span:nth-child(1) { width: 20px; height: 2px; left: -10px; top: -1px; }
.cursor-cross span:nth-child(2) { width: 2px; height: 20px; left: -1px; top: -10px; }
.cursor-trail {
  position: fixed; width: 16px; height: 16px; border-radius: 50%;
  pointer-events: none; z-index: 99998; mix-blend-mode: screen;
  transform: translate(-50%,-50%) scale(1); opacity: 0.85;
  transition: transform 0.75s ease-out, opacity 0.75s ease-out;
}
.cursor-trail.go { transform: translate(-50%,-50%) scale(0); opacity: 0; }

/* lightbox controls */
.lightbox-close {
  position: fixed; top: 24px; right: 28px; z-index: 320;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: 0.2s;
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); transform: rotate(90deg); }
.lightbox-hint {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 320;
  color: rgba(255,255,255,0.6); font-size: 0.8rem; letter-spacing: 0.04em;
}
.lightbox img { animation: lbPop 0.35s cubic-bezier(.16,1,.3,1); }
@keyframes lbPop { from { transform: scale(0.9); opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .marquee-track, .hero-visual .float { animation: none !important; }
  .cursor-trail { display: none; }
}
