/* ══════════════════════════════════════
   JOHN BLASKEY — MAIN STYLESHEET
   johnblaskey.com
══════════════════════════════════════ */

/* ── Reset & Variables ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #0d0d0d;
  --bg2:       #111111;
  --bg3:       #161616;
  --surface:   #1a1a1a;
  --border:    rgba(255,255,255,0.07);
  --gold:      #c9a96e;
  --gold-dim:  #8a6d3f;
  --cream:     #f0ead8;
  --text:      #c8c4bc;
  --text-dim:  #6b6560;
  --font-head: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --nav-w:     230px;
  --ease:      cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

/* ── Noise grain overlay ── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ── Custom cursor ── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s;
}
#cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,169,110,.4); border-radius: 50%;
  pointer-events: none; transform: translate(-50%, -50%);
  transition: width .3s var(--ease), height .3s var(--ease);
}
body.hovering #cursor  { width: 16px; height: 16px; background: var(--cream); }
body.hovering #cursor-ring { width: 52px; height: 52px; }

/* ══ SIDE NAV ══ */
#sidenav {
  position: fixed; left: 0; top: 0; bottom: 0;
  width: var(--nav-w);
  background: #0a0a0a;
  border-right: 1px solid var(--border);
  z-index: 200;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.nav-brand {
  width: 100%; padding: 34px 28px 24px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.nav-brand-name {
  font-family: var(--font-head); font-size: 21px; font-weight: 400;
  color: var(--cream); letter-spacing: .03em; line-height: 1.2;
  text-decoration: none; display: block; margin-bottom: 7px; transition: color .2s;
}
.nav-brand-name:hover { color: var(--gold); }
.nav-brand-sub {
  font-size: 9px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--gold);
}
.nav-links {
  flex: 1; width: 100%;
  display: flex; flex-direction: column;
  padding: 16px 0; list-style: none; overflow-y: auto;
}
.nav-links a {
  display: flex; align-items: center; gap: 13px;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  padding: 12px 28px;
  transition: color .2s, background .2s;
  position: relative; cursor: none;
}
.nav-links a::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 2px; background: var(--gold);
  transform: scaleY(0); transition: transform .25s var(--ease);
  transform-origin: center;
}
.nav-links a:hover             { color: var(--cream); background: rgba(255,255,255,.025); }
.nav-links a.active            { color: var(--gold);  background: rgba(201,169,110,.04); }
.nav-links a:hover::before,
.nav-links a.active::before    { transform: scaleY(1); }
.nav-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold-dim); flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.nav-links a:hover .nav-dot,
.nav-links a.active .nav-dot   { background: var(--gold); transform: scale(1.5); }
.nav-footer {
  width: 100%; padding: 18px 28px 26px;
  border-top: 1px solid var(--border); flex-shrink: 0;
}
.nav-social { display: flex; gap: 14px; margin-bottom: 14px; flex-wrap: wrap; }
.nav-social a {
  font-size: 9px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim); text-decoration: none;
  transition: color .2s; cursor: none;
}
.nav-social a:hover { color: var(--gold); }
.nav-copy { font-size: 10px; color: var(--text-dim); letter-spacing: .04em; line-height: 1.6; }

/* ══ MAIN LAYOUT & SCROLL TRACK ══ */
#main { margin-left: var(--nav-w); }

#scroll-track {
  display: flex; height: 100vh;
  width: calc(100vw - var(--nav-w));
  overflow-x: auto; overflow-y: hidden;
  -ms-overflow-style: none; scrollbar-width: none;
}
#scroll-track::-webkit-scrollbar { display: none; }

.panel {
  flex: 0 0 calc(100vw - var(--nav-w));
  width: calc(100vw - var(--nav-w));
  height: 100vh;
  scroll-snap-align: start;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}

/* ══ PROGRESS BAR & COUNTER ══ */
#progress-bar {
  position: fixed; bottom: 0; left: var(--nav-w); right: 0;
  height: 2px; background: var(--border); z-index: 100;
}
#progress-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold-dim), var(--gold));
  transition: width .3s var(--ease);
}
#section-counter {
  position: fixed; right: 28px; bottom: 18px;
  font-family: var(--font-head); font-size: 11px;
  letter-spacing: .2em; color: var(--text-dim); z-index: 100;
}
#section-counter span { color: var(--gold); }

/* ══ REVEAL ANIMATION ══
   Content is visible by default.
   JS adds .in to trigger the slide-up entrance.
   If JS fails, everything remains readable.
══════════════════════════════════════ */
.rv {
  /* Visible by default — no opacity:0 hiding */
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
/* JS adds .js-ready to body before hiding elements */
body.js-ready .rv {
  opacity: 0;
  transform: translateY(22px);
}
body.js-ready .rv.in {
  opacity: 1;
  transform: translateY(0);
}
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .30s; }
.d4 { transition-delay: .44s; }
.d5 { transition-delay: .58s; }

/* ══ SHARED TYPOGRAPHY ══ */
.eyebrow {
  font-size: 10px; letter-spacing: .35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: ''; display: block;
  width: 28px; height: 1px; background: var(--gold-dim); flex-shrink: 0;
}
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 300; line-height: 1.1; }
h2  { font-size: clamp(34px, 4vw, 60px); color: var(--cream); }
p   { color: var(--text); line-height: 1.8; }
em  { font-style: italic; color: var(--gold); }
strong.c { color: var(--cream); font-weight: 400; }

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 500; letter-spacing: .25em;
  text-transform: uppercase; text-decoration: none;
  color: var(--gold); border: 1px solid rgba(201,169,110,.35);
  padding: 13px 26px; transition: all .3s var(--ease);
  position: relative; overflow: hidden; cursor: none;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform .3s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn:hover  { color: var(--bg); }
.btn span, .ba { position: relative; z-index: 1; }
.ba { transition: transform .3s; }
.btn:hover .ba { transform: translateX(4px); }

/* ══ PANEL INNER SCROLL
   .panel-scroll elements scroll vertically within their panel.
   JS (setupScrollers) handles the boundary → navigate logic.
   KEY: must have a fixed height and overflow-y:auto.
══════════════════════════════════════ */
.panel-scroll {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.panel-scroll::-webkit-scrollbar { display: none; }

/* Grid children fill their cell (panel = 100vh, grid = 100%) */
.role-text.panel-scroll {
  height: 100%;
  /* Switch from justify-content:center to flex-start + padding
     so overflow is accessible from the top */
  justify-content: flex-start !important;
}

.about-right.panel-scroll {
  height: 100%;
  justify-content: flex-start !important;
}

.contact-left.panel-scroll {
  height: 100%;
  justify-content: flex-start !important;
}


#panel-hero { background: var(--bg); justify-content: flex-start; }

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 72% 50%, rgba(201,169,110,.045) 0%, transparent 70%),
    radial-gradient(ellipse 35% 55% at 18% 80%, rgba(201,169,110,.02)  0%, transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 65% 65% at 50% 50%, black 20%, transparent 100%);
}
.hero-photo-bg {
  position: absolute; inset: 0;
  background-image: url('../images/speaker/speaker-stage.jpg');
  background-size: cover; background-position: center 30%;
  opacity: .04; filter: grayscale(100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px; max-width: 860px;
}
.hero-roles { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.role-tag {
  font-size: 9px; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--text-dim);
  border: 1px solid var(--border); padding: 6px 14px;
  transition: all .3s; cursor: none;
}
.role-tag:hover { color: var(--gold); border-color: rgba(201,169,110,.3); }
.hero-name {
  font-family: var(--font-head);
  font-size: clamp(68px, 8.5vw, 118px);
  line-height: .95; color: var(--cream);
  font-weight: 300; letter-spacing: -.02em;
}
.hero-name em { color: var(--gold); font-style: italic; }
.hero-tagline {
  font-family: var(--font-head);
  font-size: clamp(17px, 1.8vw, 24px);
  font-weight: 300; font-style: italic;
  color: var(--text); margin: 28px 0 44px;
  max-width: 500px; line-height: 1.55;
}
.hero-ctas { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; right: 56px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-scroll span {
  font-size: 9px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--text-dim); writing-mode: vertical-lr;
}
.vline {
  width: 1px; height: 80px; background: var(--border);
  position: relative; overflow: hidden;
}
.vline::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--gold);
  animation: vscroll 2.2s ease 1s infinite;
}
@keyframes vscroll { 0% { top: -100%; } 100% { top: 100%; } }

/* ══ PANEL 1 — ABOUT ══ */
#panel-about { background: var(--bg2); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  height: 100%; width: 100%;
}
.about-left { position: relative; overflow: hidden; background: var(--bg3); }
.about-left-photo {
  position: absolute; inset: 0;
  background-image: url('../images/about/john.jpg');
  background-size: cover; background-position: center top;
  opacity: .22; filter: grayscale(15%);
}
.about-left-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,13,.15) 0%, rgba(17,17,17,.97) 100%);
}
.about-letter {
  position: absolute; right: -30px; top: 50%; transform: translateY(-50%);
  font-family: var(--font-head);
  font-size: clamp(180px, 24vw, 320px);
  font-weight: 300; line-height: 1;
  color: rgba(201,169,110,.05);
  pointer-events: none; user-select: none;
}
.about-location {
  position: absolute; bottom: 44px; left: 40px;
  font-family: var(--font-head); font-style: italic;
  font-size: 13px; color: rgba(255,255,255,.45); z-index: 2;
  letter-spacing: .06em;
}
.about-right {
  padding: 68px 72px 68px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border); margin: 34px 0;
}
.stat-item {
  padding: 22px 18px; border-right: 1px solid var(--border);
  transition: background .3s; cursor: none;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,169,110,.03); }
.stat-num {
  font-family: var(--font-head); font-size: 38px;
  font-weight: 300; color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-dim); margin-top: 5px;
}
.about-body { max-width: 450px; }
.about-body p { margin-bottom: 15px; }
.about-body p:last-child { margin-bottom: 0; }

/* ══ SHARED ROLE PANELS ══ */
.role-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 100%; width: 100%;
}
.role-grid.flip          { direction: rtl; }
.role-grid.flip > *      { direction: ltr; }
.role-text {
  padding: 68px 64px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; z-index: 2;
}
.role-visual { position: relative; overflow: hidden; }
.role-vis-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .22; filter: grayscale(15%);
}
.role-vis-overlay { position: absolute; inset: 0; }
.role-bg-num {
  position: absolute; right: 12px; bottom: -28px;
  font-family: var(--font-head);
  font-size: clamp(140px, 18vw, 220px);
  font-weight: 300; line-height: 1;
  color: rgba(255,255,255,.06);
  pointer-events: none; user-select: none; z-index: 2;
}
.role-intro { margin-top: 18px; max-width: 420px; }

/* Speaker visual atmospherics */
.speaker-vis-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 75% 75% at 50% 50%, rgba(201,169,110,.05) 0%, transparent 70%),
    linear-gradient(135deg, #0d0d0d 0%, #141210 100%);
}
.stage-floor {
  position: absolute; bottom: 18%; left: 50%; transform: translateX(-50%);
  width: 55%; height: 1px; background: rgba(201,169,110,.14);
}
.stage-floor::before {
  content: ''; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 2px; height: 70px;
  background: linear-gradient(to top, rgba(201,169,110,.18), transparent);
}
.beams { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.beam {
  position: absolute; bottom: 18%; width: 1px;
  transform-origin: bottom center;
  background: linear-gradient(to top, rgba(201,169,110,.07), transparent);
}
.beam:nth-child(1) { left: 34%; height: 58%; transform: rotate(-13deg); }
.beam:nth-child(2) { left: 44%; height: 68%; transform: rotate(-4deg);  }
.beam:nth-child(3) { left: 56%; height: 68%; transform: rotate(4deg);   }
.beam:nth-child(4) { left: 66%; height: 58%; transform: rotate(13deg);  }

/* Performer visual atmospherics */
.performer-vis-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0e0c0a 0%, #181410 100%);
}
.curtain-l, .curtain-r {
  position: absolute; top: 0; bottom: 0; width: 16%;
  background: linear-gradient(to right, rgba(8,6,4,.92), transparent);
}
.curtain-r { right: 0; background: linear-gradient(to left, rgba(8,6,4,.92), transparent); }
.spots { position: absolute; top: 0; left: 0; right: 0; height: 52%; overflow: hidden; pointer-events: none; }
.spot {
  position: absolute; top: 0; width: 2px;
  transform-origin: top center;
  background: linear-gradient(to bottom, rgba(201,169,110,.14), transparent);
}
.spot:nth-child(1) { left: 24%; height: 78%; transform: rotate(9deg);   }
.spot:nth-child(2) { left: 39%; height: 88%; transform: rotate(2deg);   }
.spot:nth-child(3) { left: 56%; height: 88%; transform: rotate(-2deg);  }
.spot:nth-child(4) { left: 71%; height: 78%; transform: rotate(-9deg);  }

/* Healer visual atmospherics */
.healer-vis-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 85% 85% at 50% 55%, rgba(201,169,110,.03) 0%, transparent 70%),
    linear-gradient(180deg, #0d0d0d 0%, #0f0e0c 100%);
}
.rings {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(201,169,110,.06);
  animation: pulse 6s ease-in-out infinite;
}
.ring:nth-child(1) { width: 180px; height: 180px; animation-delay: 0s;   }
.ring:nth-child(2) { width: 320px; height: 320px; animation-delay: 1.2s; }
.ring:nth-child(3) { width: 460px; height: 460px; animation-delay: 2.4s; }
.ring:nth-child(4) { width: 600px; height: 600px; animation-delay: 3.6s; }
@keyframes pulse {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%       { transform: scale(1.04); opacity: .45; }
}

/* Service list */
.svc-list { margin-top: 30px; }
.svc-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 15px 0; border-bottom: 1px solid var(--border);
  transition: padding-left .25s var(--ease);
}
.svc-item:last-child { border-bottom: none; }
.svc-item:hover { padding-left: 6px; }
.svc-n {
  font-family: var(--font-head); font-size: 12px;
  color: var(--gold-dim); flex-shrink: 0; padding-top: 2px;
}
.svc-name {
  font-family: var(--font-head); font-size: 19px;
  font-weight: 400; color: var(--cream);
  margin-bottom: 3px; line-height: 1.2;
}
.svc-desc { font-size: 12.5px; color: var(--text-dim); line-height: 1.6; }

/* Clients strip */
.clients { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.clients-label {
  font-size: 9px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 12px;
}
.clients-names {
  font-family: var(--font-head); font-style: italic;
  font-size: 12.5px; color: var(--text-dim); line-height: 2;
}

/* ══ PANEL 5 — TESTIMONIALS ══ */
#panel-testimonials { background: var(--bg2); flex-direction: column; justify-content: center; }
.testi-wrap { width: 100%; padding: 0 72px; }
.testi-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 48px; gap: 40px;
}
.testi-head-right {
  max-width: 300px;
  font-family: var(--font-head); font-style: italic;
  font-size: 15px; color: var(--text-dim); line-height: 1.6; text-align: right;
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border);
}
.testi-card {
  background: var(--bg); padding: 34px 30px;
  position: relative; transition: background .3s; cursor: none;
}
.testi-card:hover { background: #131313; }
.testi-card::before {
  content: '\201C'; position: absolute; top: 18px; right: 22px;
  font-family: var(--font-head); font-size: 72px;
  color: rgba(201,169,110,.09); line-height: 1;
}
.testi-quote {
  font-family: var(--font-head); font-style: italic;
  font-size: 16px; line-height: 1.65;
  color: var(--cream); margin-bottom: 22px;
}
.testi-name { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.testi-role { font-size: 12px; color: var(--text-dim); margin-top: 4px; }
.proof-strip { display: flex; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.proof-item  { display: flex; align-items: center; gap: 14px; }
.proof-num {
  font-family: var(--font-head); font-size: 34px;
  color: var(--gold); font-weight: 300; line-height: 1;
}
.proof-label {
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-dim); max-width: 120px; line-height: 1.55;
}

/* ══ PANEL 6 — GALLERY ══ */
#panel-gallery { background: var(--bg); flex-direction: column; justify-content: center; align-items: flex-start; }
.gallery-wrap { width: 100%; padding: 0 72px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px; height: 56vh; margin-top: 34px;
}
.g-item { position: relative; overflow: hidden; cursor: pointer; }
.g-item:first-child { grid-row: 1 / 3; }
.g-photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .6s var(--ease);
  opacity: .38; filter: grayscale(10%);
}
.g-item:hover .g-photo { transform: scale(1.04); opacity: .55; }
.g-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.05) 60%, transparent 100%);
  pointer-events: none;
}
.g-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 14px 18px;
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.g-count { color: var(--gold); font-size: 9px; margin-left: 6px; }
.g-item:hover .g-label { color: var(--cream); }

/* ══ LIGHTBOX ══ */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.94);
  align-items: center; justify-content: center;
}
.lb-wrap  { position: relative; width: 90vw; max-width: 860px; }
.lb-title {
  position: absolute; top: -38px; left: 0;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}
.lb-img {
  width: 100%; aspect-ratio: 16/10;
  background-size: contain; background-repeat: no-repeat;
  background-position: center; background-color: #111;
  transition: opacity .3s;
}
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(0,0,0,.55); border: 1px solid var(--border);
  color: var(--cream); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-btn:hover { background: var(--gold); color: var(--bg); }
.lb-prev { left:  -54px; }
.lb-next { right: -54px; }
.lb-close {
  position: absolute; top: -44px; right: 0;
  background: none; border: none;
  color: var(--text-dim); font-size: 28px; cursor: pointer;
  transition: color .2s; padding: 4px;
}
.lb-close:hover { color: var(--cream); }
.lb-footer { text-align: center; margin-top: 14px; }
.lb-counter { font-size: 10px; letter-spacing: .2em; color: var(--text-dim); text-transform: uppercase; }
.lb-counter span { color: var(--gold); }
.lb-dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.lb-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-dim); cursor: pointer;
  transition: background .2s, transform .2s;
}
.lb-dot.on { background: var(--gold); transform: scale(1.3); }

/* ══ PANEL 7 — CONTACT ══ */
#panel-contact { background: var(--bg2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 100%; width: 100%;
}
.contact-left {
  padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid var(--border);
}
.contact-right {
  padding: 60px 52px;
  display: flex; flex-direction: column; justify-content: center;
}
.contact-intro { max-width: 360px; margin-top: 20px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:last-child { border-bottom: none; }
.contact-icon {
  width: 32px; height: 32px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold); font-size: 12px;
}
.contact-lbl {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); margin-bottom: 2px;
}
.contact-val { font-family: var(--font-head); font-size: 15px; color: var(--cream); }
.contact-val a { color: inherit; text-decoration: none; transition: color .2s; }
.contact-val a:hover { color: var(--gold); }

/* Form */
.fgrp  { margin-bottom: 16px; }
.flbl  {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim); display: block; margin-bottom: 6px;
}
.finput {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid var(--border);
  color: var(--cream); font-family: var(--font-body); font-size: 14px;
  padding: 8px 0; outline: none;
  transition: border-color .3s; caret-color: var(--gold);
}
.finput::placeholder { color: var(--text-dim); }
.finput:focus        { border-color: var(--gold-dim); }
textarea.finput      { resize: none; height: 64px; }
select.finput option { background: var(--bg); }
.fsub {
  width: 100%; margin-top: 10px;
  background: none; border: 1px solid rgba(201,169,110,.35);
  color: var(--gold); font-family: var(--font-body);
  font-size: 10px; font-weight: 500; letter-spacing: .25em;
  text-transform: uppercase; padding: 12px 24px;
  cursor: none; transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.fsub::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold); transform: translateX(-101%);
  transition: transform .3s var(--ease);
}
.fsub:hover::before { transform: translateX(0); }
.fsub:hover { color: var(--bg); }
.fsub span  { position: relative; z-index: 1; }
.panel-footer {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
}
.panel-footer-copy { font-size: 10px; color: var(--text-dim); letter-spacing: .08em; }
.panel-footer-name {
  font-family: var(--font-head); font-size: 13px;
  color: var(--text-dim); letter-spacing: .12em;
}

/* ══ MOBILE NAV ══ */
#mobile-nav {
  display: none; position: fixed; top: 0; left: 0; right: 0;
  background: rgba(10,10,10,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); z-index: 200;
  padding: 15px 22px; align-items: center; justify-content: space-between;
}
.mob-logo {
  font-family: var(--font-head); font-size: 17px;
  color: var(--cream); letter-spacing: .06em; text-decoration: none;
}
#menu-toggle {
  background: none; border: none; cursor: pointer;
  color: var(--cream); font-size: 22px; padding: 4px;
}
#mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 199;
  background: rgba(10,10,10,.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-family: var(--font-head); font-size: 34px;
  color: var(--cream); text-decoration: none;
  letter-spacing: .05em; transition: color .2s;
}
#mobile-menu a:hover { color: var(--gold); }
#menu-close {
  position: absolute; top: 18px; right: 22px;
  background: none; border: none; cursor: pointer;
  color: var(--text-dim); font-size: 24px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1060px) {
  body { cursor: auto; }
  #cursor, #cursor-ring, #section-counter, #progress-bar { display: none; }
  #sidenav   { display: none; }
  #mobile-nav { display: flex; }
  #main      { margin-left: 0; }

  #scroll-track {
    display: block; height: auto; width: 100%;
    overflow-x: visible; overflow-y: visible; scroll-snap-type: none;
  }
  .panel {
    flex: none; width: 100%; height: auto;
    min-height: 100svh; scroll-snap-align: none;
  }
  .hero-content { padding: 100px 24px 60px; max-width: 100%; }
  .hero-name    { font-size: 52px; }
  .hero-scroll  { display: none; }
  .hero-ctas    { flex-direction: column; align-items: flex-start; }

  .about-grid  { grid-template-columns: 1fr; }
  .about-left  { height: 45svh; }
  .about-right { padding: 48px 24px 52px; }
  .stat-num    { font-size: 28px; }

  .role-grid, .role-grid.flip { grid-template-columns: 1fr; direction: ltr; }
  .role-visual { height: 42svh; order: -1; }
  .role-text   { padding: 40px 24px; }
  .role-intro  { max-width: 100%; }

  .testi-wrap       { padding: 52px 24px; }
  .testi-head       { flex-direction: column; align-items: flex-start; }
  .testi-head-right { text-align: left; }
  .testi-grid       { grid-template-columns: 1fr; }

  .gallery-wrap { padding: 52px 24px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 160px 160px; height: auto;
  }
  .g-item:first-child { grid-row: auto; grid-column: span 2; }

  .contact-grid  { grid-template-columns: 1fr; }
  .contact-left  { padding: 80px 24px 40px; border-right: none; border-bottom: 1px solid var(--border); }
  .contact-right { padding: 40px 24px 70px; }
  .panel-footer  { padding: 14px 24px; }

  .lb-prev  { left: -8px; }
  .lb-next  { right: -8px; }
  .lb-wrap  { width: 95vw; }
}

@media (max-width: 600px) {
  .hero-name { font-size: 42px; }
  h2         { font-size: 30px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .about-stats .stat-item:nth-child(3) {
    grid-column: span 2; border-right: none; border-top: 1px solid var(--border);
  }
  .proof-strip { gap: 28px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 200px 160px 160px 160px 160px; height: auto;
  }
  .g-item:first-child { grid-column: auto; }
}
