/* ════════════════════════════════════════
   TOKENS — DARK (default)
════════════════════════════════════════ */
:root {
  --black:     #000000;
  --white:     #ffffff;
  --mid:       #111111;
  --border:    #2a2a2a;
  --text-grey: #888888;
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --radius-card:  20px;
  --radius-pill:  100px;
  --radius-input: 14px;

  --bg-0: #000000;
  --bg-1: #0a0a0a;
  --bg-2: #0f0f0f;
  --bg-3: #050505;
  --bg-4: #0d0d0d;
  --bg-5: #080808;
  --bg-6: #111111;
}

/* ════════════════════════════════════════
   TOKENS — LIGHT (true inversion)
   #000000 ↔ #ffffff
   #111111 ↔ #eeeeee
   #2a2a2a ↔ #d5d5d5
════════════════════════════════════════ */
body.light-theme {
  --black:     #ffffff;
  --white:     #000000;
  --mid:       #eeeeee;
  --border:    #d5d5d5;
  --text-grey: #666666;

  --bg-0: #ffffff;
  --bg-1: #f5f5f5;
  --bg-2: #f0f0f0;
  --bg-3: #fafafa;
  --bg-4: #f2f2f2;
  --bg-5: #f7f7f7;
  --bg-6: #eeeeee;
}

/* ════════════════════════════════════════
   RESET
════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-weight: 400; cursor: none;
  overflow-x: hidden; max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  transition: background .35s, color .35s;
}
.heading-font { font-family: 'Sora', sans-serif; font-weight: 700; }
.text-stroke { -webkit-text-stroke: 1.5px var(--white); color: transparent; }

/* ════════════════════════════════════════
   CURSOR
════════════════════════════════════════ */
.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--white); border-radius: 50%;
  pointer-events: none; z-index: 999999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width .3s var(--ease), height .3s var(--ease);
}
.cursor.active { width: 34px; height: 34px; }

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 40px; transition: padding .5s var(--ease);
}
nav::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: transparent; backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background .5s var(--ease), backdrop-filter .5s var(--ease);
}
nav.scrolled { padding: 14px 40px; border-bottom: 1px solid var(--border); }
nav.scrolled::before {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
body.light-theme nav.scrolled::before { background: rgba(255,255,255,0.94); }

.nav-logo { font-size: 1.15rem; color: var(--white); text-decoration: none; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--text-grey);
  text-decoration: none; transition: color .25s; display: inline-block;
}
.nav-links a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.theme-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--text-grey); display: flex; align-items: center;
  transition: color .25s; padding: 4px;
}
.theme-toggle:hover { color: var(--white); }
.nav-cta {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--black);
  background: var(--white); text-decoration: none;
  padding: 11px 24px; border-radius: var(--radius-pill);
  transition: opacity .25s;
}
.nav-cta:hover { opacity: .84; }
.menu-toggle { display: none; }

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--bg-0); position: relative; overflow: hidden; padding: 120px 40px 80px;
}
.hero-content {
  display: flex; flex-direction: column; align-items: flex-start;
  max-width: 900px; width: 100%;
}
.hero-tag-wrap { margin-bottom: 32px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-grey);
  border: 1px solid var(--border); padding: 9px 18px; border-radius: var(--radius-pill);
}
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.8rem, 8vw, 6.5rem);
  line-height: 1.05; letter-spacing: -0.035em;
  font-weight: 800; margin-bottom: 40px; color: var(--white);
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; text-decoration: none;
  padding: 15px 32px; border-radius: var(--radius-pill);
  background: var(--white); color: var(--black);
  transition: opacity .25s, transform .3s var(--ease);
}
.btn-primary:hover { opacity: .88; transform: scale(1.02); }

.btn-ghost {
  display: inline-flex; align-items: center;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; text-decoration: none;
  padding: 14px 32px; border-radius: var(--radius-pill);
  background: transparent; color: var(--white); border: 1px solid var(--border);
  transition: border-color .25s, transform .3s var(--ease);
}
.btn-ghost:hover { border-color: var(--white); }

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 16px 0;
  background: var(--bg-1); position: relative; z-index: 2;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 24px;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.14em; color: var(--text-grey); padding: 0 28px;
}
.dot { width: 4px; height: 4px; background: var(--text-grey); border-radius: 50%; }

/* ════════════════════════════════════════
   SECTIONS — shared
════════════════════════════════════════ */
section { padding: 100px 40px; position: relative; z-index: 2; }
.section-label {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--text-grey); margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 5px; height: 5px; background: var(--text-grey); border-radius: 50%; }
.section-title { font-size: clamp(2rem, 4vw, 3.5rem); line-height: 1.08; margin-bottom: 48px; letter-spacing: -0.025em; color: var(--white); }

/* ════════════════════════════════════════
   PORTFOLIO
════════════════════════════════════════ */
#portfolio { background: var(--bg-1); }

.portfolio-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; }
.portfolio-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  font-family: inherit; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  background: transparent; color: var(--text-grey);
  border: 1px solid var(--border); padding: 9px 18px; border-radius: var(--radius-pill);
  cursor: pointer; transition: all .3s var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--white); color: var(--black); border-color: var(--white);
}

.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.p-item {
  background: var(--mid); border-radius: var(--radius-card);
  overflow: hidden; position: relative; width: 100%;
  cursor: pointer; transition: transform .4s var(--ease);
}
.p-item:hover { transform: scale(0.985); }

.p-item.p-portrait  { grid-column: span 4; aspect-ratio: 4/5; }
.p-item.p-tiktok    { grid-column: span 3; aspect-ratio: 9/16; }
.p-item.p-landscape { grid-column: span 8; aspect-ratio: 16/9; }
.p-item.p-square    { grid-column: span 4; aspect-ratio: 1/1; }
.p-item.p-cinema    { grid-column: span 12; aspect-ratio: 21/9; }

/* Placeholder gradients — dark */
.p-item:nth-child(1) { background: linear-gradient(145deg, #2a2a2a, #111); }
.p-item:nth-child(2) { background: linear-gradient(145deg, #1f1f1f, #0a0a0a); }
.p-item:nth-child(3) { background: linear-gradient(145deg, #333, #151515); }
.p-item:nth-child(4) { background: linear-gradient(145deg, #222, #0f0f0f); }
.p-item:nth-child(5) { background: linear-gradient(145deg, #2a2a2a, #121212); }
.p-item:nth-child(6) { background: linear-gradient(145deg, #1c1c1c, #0c0c0c); }
.p-item:nth-child(7) { background: linear-gradient(145deg, #252525, #111); }

/* Placeholder gradients — light (inverted) */
body.light-theme .p-item:nth-child(1) { background: linear-gradient(145deg, #d5d5d5, #eee); }
body.light-theme .p-item:nth-child(2) { background: linear-gradient(145deg, #e0e0e0, #f5f5f5); }
body.light-theme .p-item:nth-child(3) { background: linear-gradient(145deg, #ccc, #eaeaea); }
body.light-theme .p-item:nth-child(4) { background: linear-gradient(145deg, #ddd, #f0f0f0); }
body.light-theme .p-item:nth-child(5) { background: linear-gradient(145deg, #d5d5d5, #ededed); }
body.light-theme .p-item:nth-child(6) { background: linear-gradient(145deg, #e3e3e3, #f3f3f3); }
body.light-theme .p-item:nth-child(7) { background: linear-gradient(145deg, #dadada, #eee); }

/* Real media from Supabase */
.port-media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block; border-radius: var(--radius-card);
  transition: transform .6s var(--ease);
}
.p-item:hover .port-media { transform: scale(1.03); }

.portfolio-loading {
  grid-column: span 12; text-align: center;
  padding: 60px 0; color: var(--text-grey);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
}

.img-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  pointer-events: none;
}
.placeholder-icon { font-size: 1.6rem; color: rgba(255,255,255,0.18); transition: color .3s; }
body.light-theme .placeholder-icon { color: rgba(0,0,0,0.18); }
.p-item:hover .placeholder-icon { color: rgba(255,255,255,0.35); }
body.light-theme .p-item:hover .placeholder-icon { color: rgba(0,0,0,0.35); }
.placeholder-text {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.15); transition: color .3s;
}
body.light-theme .placeholder-text { color: rgba(0,0,0,0.15); }

.p-item-inner {
  position: absolute; inset: 0; padding: 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.88), transparent);
  opacity: 0; transition: opacity .45s var(--ease); z-index: 2;
}
.p-item:hover .p-item-inner { opacity: 1; }
.p-item-title { font-size: 1.2rem; letter-spacing: -0.015em; color: #fff; transform: translateY(12px); transition: transform .45s var(--ease); }
.p-item:hover .p-item-title { transform: translateY(0); }
.p-item-cat { font-size: 0.68rem; color: rgba(255,255,255,0.6); margin-top: 5px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.p-item-label {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
  padding: 7px 14px; border-radius: var(--radius-pill);
  font-size: 0.65rem; color: #fff; font-weight: 600; z-index: 2;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
#services { background: var(--bg-2); }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.service-card {
  background: var(--mid); padding: 36px 30px;
  border-radius: var(--radius-card); border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .5s var(--ease), background .4s;
}
.service-card:hover { background: var(--bg-6); transform: translateY(-5px); }
body.light-theme .service-card:hover { background: #e4e4e4; }

.service-num {
  width: 44px; height: 44px; background: var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 28px;
  transition: background .3s, color .3s;
}
.service-card:hover .service-num { background: var(--white); color: var(--black); }
.service-name { font-size: 1.35rem; margin-bottom: 14px; letter-spacing: -0.02em; color: var(--white); }
.service-desc { font-size: 0.92rem; color: var(--text-grey); line-height: 1.65; margin-bottom: 28px; flex-grow: 1; }
.service-price { font-size: 0.72rem; color: var(--text-grey); text-transform: uppercase; letter-spacing: 0.06em; }
.service-price strong { font-size: 1.45rem; color: var(--white); display: block; margin-top: 6px; letter-spacing: -0.02em; }

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
#about {
  display: flex; flex-direction: column;
  gap: 32px; background: var(--bg-3);
}
/* Top row: photo + name */
.about-top {
  display: flex; align-items: center; gap: 24px;
}
.about-visual {
  background: var(--mid); border-radius: var(--radius-card);
  aspect-ratio: 1 / 1;
  flex: 0 0 180px; width: 180px;
  border: 1px solid var(--border); overflow: hidden; position: relative;
}
.about-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.about-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.about-placeholder-icon { font-size: 3.5rem; opacity: 0.12; }
.about-placeholder-text {
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}
body.light-theme .about-placeholder-text { color: rgba(0,0,0,0.2); }
.about-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.about-name-block { flex: 1; }
.about-name-block .section-title { margin-bottom: 0; }

/* Bottom: bio + stats full width */
.about-bottom { width: 100%; }
.about-bio { font-size: 1rem; line-height: 1.7; color: var(--text-grey); margin-bottom: 36px; }
.about-bio strong { color: var(--white); font-weight: 600; }
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  border-top: 1px solid var(--border); padding-top: 36px;
}
.stat-num { font-size: 2.1rem; letter-spacing: -0.02em; font-weight: 700; margin-bottom: 6px; color: var(--white); }
.stat-label { font-size: 0.68rem; color: var(--text-grey); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
#testimonials { background: var(--bg-4); }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.testi-card {
  background: var(--mid); padding: 36px 30px;
  border-radius: var(--radius-card); border: 1px solid var(--border);
  display: flex; flex-direction: column; transition: transform .4s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-text { font-size: 1rem; line-height: 1.65; margin-bottom: 28px; color: var(--white); opacity: 0.82; flex-grow: 1; }
.testi-author { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.testi-author span { display: block; color: var(--text-grey); font-weight: 500; font-size: 0.72rem; margin-top: 5px; }
.hidden-review { display: none; }
.hidden-review.show { display: flex; animation: fadeUp .6s var(--ease) forwards; }
.view-more-container { margin-top: 36px; display: flex; justify-content: center; }

/* ════════════════════════════════════════
   BOOKING
════════════════════════════════════════ */
#booking { background: var(--bg-5); }

.booking-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 56px; }
.booking-info h3 { font-size: 1.7rem; margin-bottom: 20px; font-weight: 600; letter-spacing: -0.025em; line-height: 1.25; color: var(--white); }
.booking-details { list-style: none; display: flex; flex-direction: column; gap: 14px; color: var(--text-grey); line-height: 1.55; font-size: 0.92rem; }
.booking-details li { display: flex; gap: 12px; align-items: flex-start; }
.booking-details li::before { content: '—'; color: var(--text-grey); flex-shrink: 0; }

.price-preview {
  margin-top: 28px; padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 14px;
}
body.light-theme .price-preview { background: rgba(0,0,0,0.04); }
.price-preview-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; color: var(--text-grey); padding: 6px 0; }
.price-preview-row strong { color: var(--white); font-size: 1rem; }
.price-preview-row.highlight { border-top: 1px solid var(--border); margin-top: 8px; padding-top: 14px; }
.price-preview-row.highlight strong { font-size: 1.2rem; }

.booking-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  background: var(--mid); padding: 36px;
  border-radius: var(--radius-card); border: 1px solid var(--border);
}
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: span 2; }

.form-group input,
.form-group select,
.magnetic-input {
  width: 100%; background: var(--black);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: inherit; font-size: 0.92rem;
  padding: 16px 20px; border-radius: var(--radius-input);
  outline: none; font-weight: 500;
  transition: border-color .25s, background .35s, color .35s;
  -webkit-appearance: none; appearance: none;
}
body.light-theme .form-group input,
body.light-theme .form-group select,
body.light-theme .magnetic-input {
  background: #ffffff;
  border-color: var(--border);
  color: #000000;
}
.form-group input::placeholder,
.magnetic-input::placeholder { color: var(--text-grey); opacity: 0.8; }
body.light-theme .form-group input::placeholder,
body.light-theme .magnetic-input::placeholder { color: #888; opacity: 1; }
.form-group input:focus,
.form-group select:focus,
.magnetic-input:focus { border-color: var(--white); }
.form-group select option { background: #111111; color: #ffffff; }
body.light-theme .form-group select option { background: #ffffff; color: #000000; }

.submit-row { grid-column: span 2; margin-top: 4px; }
#time-slot-wrap { animation: fadeUp .35s var(--ease) both; }

.btn-submit {
  width: 100%; background: var(--white); color: var(--black);
  border: none; font-family: inherit; font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 18px; border-radius: var(--radius-pill);
  cursor: pointer; transition: opacity .2s, transform .3s var(--ease);
}
.btn-submit:hover { opacity: .85; transform: scale(1.01); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  padding: 36px 40px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; z-index: 2; background: var(--black);
}
.footer-logo { font-size: 1.15rem; font-weight: 700; color: var(--white); }
.footer-copy { color: var(--text-grey); font-size: 0.75rem; font-weight: 500; }

/* ════════════════════════════════════════
   NOTIFICATION
════════════════════════════════════════ */
.notification {
  position: fixed; bottom: 28px; right: 28px;
  background: var(--white); color: var(--black);
  padding: 14px 24px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 0.82rem; z-index: 9999;
  transform: translateY(100px); opacity: 0;
  transition: transform .5s var(--ease), opacity .5s;
  pointer-events: none;
}
.notification.show { transform: translateY(0); opacity: 1; }

/* ════════════════════════════════════════
   ANIMATIONS — Sellora pattern
════════════════════════════════════════ */
.scroll-animate {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.scroll-animate.show { opacity: 1; transform: translateY(0); }
.scroll-animate.delay-1 { transition-delay: 0.12s; }
.scroll-animate.delay-2 { transition-delay: 0.24s; }
.scroll-animate.delay-3 { transition-delay: 0.36s; }

.reveal, .reveal-up, .reveal-scale, .fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible, .reveal-up.visible,
.reveal-scale.visible, .fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s !important; }
.delay-2 { transition-delay: 0.24s !important; }

@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }

/* ════════════════════════════════════════
   SCROLLBAR
════════════════════════════════════════ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 992px) {
  section { padding: 72px 20px; }
  nav { padding: 16px 20px; }
  .desktop-cta { display: none; }
  .nav-right { gap: 14px; }

  .menu-toggle { display: flex; flex-direction: column; gap: 6px; z-index: 102; cursor: pointer; }
  .menu-toggle span { width: 24px; height: 2px; background: var(--white); transition: all .3s var(--ease); transform-origin: center; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; width: 75%; max-width: 300px;
    background: rgba(10,10,10,0.6); backdrop-filter: blur(28px) saturate(200%);
    -webkit-backdrop-filter: blur(28px) saturate(200%);
    border-left: 1px solid rgba(255,255,255,0.07);
    flex-direction: column; justify-content: flex-start; align-items: flex-start;
    padding: 96px 0 56px; gap: 0;
    transform: translateX(100%); transition: transform .55s var(--ease); z-index: 100;
    overflow: hidden;
  }
  body.light-theme .nav-links {
    background: rgba(255,255,255,0.88);
    border-left-color: rgba(0,0,0,0.07);
  }
  .nav-links li:not(.mobile-cta) { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
  body.light-theme .nav-links li:not(.mobile-cta) { border-bottom-color: rgba(0,0,0,0.06); }
  .nav-links a { font-size: 1.05rem; width: 100%; padding: 22px 36px; display: block; }
  .nav-links.active { transform: translateX(0); }
  .mobile-cta { margin-top: auto; width: 100%; padding: 0 36px; }
  .mobile-cta .nav-cta { padding: 14px 28px; font-size: 0.82rem; width: 100%; text-align: center; display: block; white-space: nowrap; }

  .hero-title { font-size: 11vw; margin-bottom: 28px; }
  .hero-content { align-items: center; text-align: center; padding: 0 10px; max-width: 100%; }
  .hero-actions { flex-direction: column; gap: 10px; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }

  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .portfolio-grid { display: flex; flex-direction: column; gap: 12px; }
  .p-item               { width: 100% !important; min-height: unset; }
  .p-item.p-portrait    { aspect-ratio: 4/5   !important; }
  .p-item.p-tiktok      { aspect-ratio: 9/16  !important; }
  .p-item.p-landscape   { aspect-ratio: 16/9  !important; }
  .p-item.p-square      { aspect-ratio: 1/1   !important; }
  .p-item.p-cinema      { aspect-ratio: 16/9  !important; }

  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .about-visual { flex: 0 0 120px; width: 120px; }
  .about-stats { grid-template-columns: 1fr 1fr 1fr; text-align: center; gap: 16px; }
  .booking-layout { grid-template-columns: 1fr; gap: 36px; }
  .booking-form { padding: 22px; grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .submit-row { grid-column: span 1; }
  footer { padding: 36px 20px; flex-direction: column; gap: 14px; text-align: center; }
}

@media (hover: none) {
  .cursor { display: none !important; }
  body { cursor: auto; }
  .magnetic { transform: none !important; }
}

/* ════════════════════════════════════════
   PAYSTACK PAYMENT MODAL
════════════════════════════════════════ */
.pay-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .35s cubic-bezier(0.16,1,0.3,1);
}
.pay-overlay.open { opacity: 1; pointer-events: all; }
.pay-modal {
  background: var(--mid); border: 1px solid var(--border);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  width: min(520px, 100%); max-height: 92vh; overflow-y: auto;
  transform: translateY(100%);
  transition: transform .45s cubic-bezier(0.16,1,0.3,1);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.pay-overlay.open .pay-modal { transform: translateY(0); }
.pay-handle {
  width: 40px; height: 4px; background: var(--border);
  border-radius: 4px; margin: 14px auto 0;
}
.pay-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  padding: 18px 28px 16px; border-bottom: 1px solid var(--border);
}
.pay-label {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-grey); margin-bottom: 4px;
}
.pay-title { font-size: 1.3rem; letter-spacing: -0.02em; color: var(--white); }
.pay-close {
  background: none; border: none; color: var(--text-grey);
  font-size: 1.1rem; cursor: pointer; padding: 4px;
  transition: color .2s; line-height: 1;
}
.pay-close:hover { color: var(--white); }
.pay-body { padding: 20px 28px; }
.pay-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 0; border-bottom: 1px solid var(--border);
  font-size: 0.88rem; color: var(--text-grey);
}
.pay-row:last-child { border-bottom: none; }
.pay-row strong { color: var(--white); font-weight: 600; font-size: 0.94rem; font-family: 'Sora', sans-serif; }
.pay-row.highlight { border-top: 2px solid var(--border); margin-top: 4px; padding-top: 16px; }
.pay-row.highlight strong { font-size: 1.2rem; }
.pay-footer { padding: 16px 28px 28px; display: flex; flex-direction: column; gap: 12px; }
.pay-note { font-size: 0.73rem; color: var(--text-grey); line-height: 1.55; }
.btn-pay {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; background: var(--white); color: var(--black);
  border: none; font-family: 'Sora', sans-serif;
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 18px; border-radius: var(--radius-pill);
  cursor: pointer; transition: opacity .2s, transform .3s cubic-bezier(0.16,1,0.3,1);
}
.btn-pay:hover { opacity: .88; transform: scale(1.01); }
.btn-pay:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-ghost-sm {
  background: transparent; border: none; color: var(--text-grey);
  font-size: 0.78rem; font-weight: 600; text-align: center;
  padding: 6px; cursor: pointer; transition: color .2s; font-family: inherit;
}
.btn-ghost-sm:hover { color: var(--white); }

/* ════════════════════════════════════════
   WHATSAPP FIELD HINT
════════════════════════════════════════ */
.wa-hint {
  font-size: 0.75rem; font-weight: 600;
  margin-top: 8px; padding: 8px 14px;
  border-radius: 8px; display: none;
  transition: all .3s cubic-bezier(0.16,1,0.3,1);
}
.wa-hint.show { display: block; }
.wa-hint.ok   { background: rgba(62,207,142,.1); color: #3ecf8e; border: 1px solid rgba(62,207,142,.25); }
.wa-hint.warn { background: rgba(242,162,92,.1);  color: #f2a25c; border: 1px solid rgba(242,162,92,.25); }
.wa-hint.err  { background: rgba(242,92,92,.1);   color: #f25c5c; border: 1px solid rgba(242,92,92,.25); }
body.light-theme .wa-hint.ok   { background: rgba(16,160,100,.08); color: #0e8f5a; }
body.light-theme .wa-hint.warn { background: rgba(180,100,20,.08); color: #a05a10; }
body.light-theme .wa-hint.err  { background: rgba(200,30,30,.07);  color: #b01010; }

/* ════════════════════════════════════════
   PORTFOLIO — lazy load fade-in
════════════════════════════════════════ */
.port-img-lazy {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.port-img-lazy.loaded {
  opacity: 1;
}

/* ════════════════════════════════════════
   TIME SLOT — taken/unavailable state
════════════════════════════════════════ */
#b-time option.slot-taken {
  color: var(--text-grey);
  background: transparent;
}
/* Select itself gets a visual cue when a taken option is focused */
#b-time option:disabled {
  font-style: italic;
}
