/* ============================================
   BOSS CONTENT — Design System v2
   Dark, modern, glow-accented
   ============================================ */

:root {
  --black: #0b0b0c;
  --off-black: #131315;
  --charcoal: #17171a;
  --dark-grey: #1e1e22;
  --mid-grey: rgba(244,242,238,0.35);
  --light-grey: rgba(244,242,238,0.55);
  --off-white: #f4f2ee;
  --white: #ffffff;
  --gold: #c9a96e;
  --gold-light: #d8bc85;
  --gold-soft: rgba(201,169,110,0.14);
  --line: rgba(255,255,255,0.08);
  --radius: 14px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
  --font-condensed: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --nav-height: 64px;
  --transition-fast: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* Custom cursor retired in v2 — normal cursor everywhere */
.cursor, .cursor-ring { display: none !important; }
body, a, button, .work-item, .form-submit, select.form-input { cursor: auto; }
a, button, .work-item { cursor: pointer; }

/* ── Page transition ── */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 999;
  transform: translateY(0);
  pointer-events: none;
}

/* ── Nav ── */
.top-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(11,11,12,0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.top-bar.scrolled { border-bottom-color: var(--line); }
.top-bar-left { display: flex; align-items: center; gap: 24px; }
.logo {
  font-weight: 700;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  color: var(--off-white);
}
.logo span { color: var(--gold); }
.top-bar-phone {
  font-size: 0.78rem;
  color: var(--mid-grey);
  transition: color var(--transition-fast);
}
.top-bar-phone:hover { color: var(--off-white); }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a {
  font-size: 0.82rem;
  color: var(--light-grey);
  transition: color var(--transition-fast);
}
.main-nav a:hover, .main-nav a.active { color: var(--off-white); }
.nav-dot { display: none; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--off-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.mobile-menu {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  z-index: 99;
  background: rgba(11,11,12,0.96);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  padding: 12px 32px 24px;
  transform: translateY(-110%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  padding: 14px 0;
  font-size: 1rem;
  color: var(--light-grey);
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-child { border-bottom: none; }

/* ── Hero (framed) ── */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: calc(var(--nav-height) + 100px) 32px 60px;
  max-width: 1080px;
  margin: 0 auto;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 520px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.13), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-content {
  order: 1;
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0;
  margin-bottom: 64px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--light-grey);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-body);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--light-grey);
  max-width: 580px;
  margin: 0 auto;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.hero-video-wrap {
  order: 2;
  position: relative;
  inset: auto;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 120px -30px rgba(0,0,0,0.8);
  z-index: 1;
}
.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,169,110,0.18), transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay, .hero-scroll { display: none; }

/* ── Buttons ── */
.btn-primary, .btn-secondary, .form-submit {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  font-family: var(--font-body);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: none;
}
.btn-primary {
  background: var(--off-white);
  color: var(--black);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--white); }
.btn-secondary {
  border: 1px solid var(--line);
  color: var(--light-grey);
  background: transparent;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.25); color: var(--off-white); }

/* ── Client ticker ── */
.logo-ticker {
  overflow: hidden;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  max-width: 100%;
}
.logo-ticker-track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: ticker 32s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.logo-ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--light-grey);
  transition: color var(--transition-fast);
}
a.ticker-item:hover { color: var(--gold-light); }
.ticker-dot {
  color: rgba(201,169,110,0.35);
  font-size: 0.5rem;
}

/* ── Sections ── */
section { padding: 100px 32px; max-width: 1080px; margin: 0 auto; }
.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-title {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--white);
}
.section-title em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--gold);
}
.section-body {
  font-size: 0.98rem;
  color: var(--light-grey);
  max-width: 520px;
}
.divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  margin: 22px 0;
}
.work-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  max-width: 1080px;
  margin: 0 auto 48px;
  padding: 0 32px;
}

/* ── Work grid (homepage) ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px 40px;
}
.work-grid .work-item { aspect-ratio: 4/5; }
.work-item {
  position: relative;
  overflow: hidden;
  background: var(--off-black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.work-item:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-3px); }
.work-item video, .work-item .video-placeholder {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.work-item:hover video { transform: scale(1.03); }
.video-placeholder {
  background: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.work-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 45%);
  opacity: 1;
  transition: opacity var(--transition-fast);
}
.work-item-meta h3 {
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--white);
  line-height: 1.3;
}
.work-item-meta span {
  font-size: 0.78rem;
  color: var(--light-grey);
}
.work-item-expand-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--off-white);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 13px;
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}
.work-item:hover .work-item-expand-hint { opacity: 1; }

/* ── Quote banner ── */
.quote-banner {
  padding: 90px 32px;
  background: var(--off-black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 16rem;
  color: rgba(201,169,110,0.06);
  position: absolute;
  top: -50px; left: 40px;
  line-height: 1;
  pointer-events: none;
}
.quote-track {
  max-width: 720px;
  margin: 0 auto;
  min-height: 120px;
}
.quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--off-white);
  border: none;
  margin-bottom: 18px;
}
.quote-author {
  font-style: normal;
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.quote-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}
.quote-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(244,242,238,0.2);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.quote-dot.active { background: var(--gold); transform: scale(1.25); }

/* ── Optimisation section (homepage) ── */
.optimisation { background: transparent; }
.opt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.opt-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.opt-service {
  background: var(--off-black);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.opt-service:hover { border-color: rgba(201,169,110,0.35); transform: translateY(-2px); }
.opt-service h4 {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 650;
}
.opt-service p {
  font-size: 0.85rem;
  color: var(--light-grey);
  line-height: 1.6;
}
.opt-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.opt-visual video { width: 100%; height: 100%; object-fit: cover; }

/* ── Forms ── */
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-input, .form-textarea {
  width: 100%;
  background: var(--off-black);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease;
}
.form-input:focus, .form-textarea:focus { border-color: rgba(201,169,110,0.5); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--mid-grey); }
.form-textarea { min-height: 130px; resize: vertical; }
.form-submit { width: 100%; background: var(--off-white); color: var(--black); }
.form-submit:hover { background: var(--white); transform: translateY(-1px); }
.form-submit:disabled { background: var(--dark-grey); color: var(--gold); transform: none; }

/* ── Footer ── */
footer {
  border-top: 1px solid var(--line);
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
.footer-logo {
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
}
.footer-logo span { color: var(--gold); }
.footer-copy { font-size: 0.78rem; color: var(--mid-grey); }
.footer-links { display: flex; gap: 20px; }
.footer-links a {
  font-size: 0.78rem;
  color: var(--light-grey);
  transition: color var(--transition-fast);
}
.footer-links a:hover { color: var(--off-white); }

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .logo-ticker-track { animation: none; }
}

/* ── Keyframes ── */
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   VIDEO LIGHTBOX MODAL
   ============================================ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 40px;
}
.video-modal.open { opacity: 1; visibility: visible; }
.video-modal-inner {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.video-modal.open .video-modal-inner { transform: scale(1); }
.video-modal video {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  background: #000;
  display: block;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.video-modal-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  text-align: center;
  font-weight: 600;
}
.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--off-white);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  padding: 8px 12px;
  transition: color 0.2s ease;
}
.video-modal-close:hover { color: var(--gold); }

/* ============================================
   SEO RANKING ANIMATION (Optimisation page)
   ============================================ */
.seo-rank-outer {
  width: 100%;
  height: 100%;
  background: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.seo-rank-demo {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  font-family: Arial, sans-serif;
}
.seo-rank-demo-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid #e8e8e8;
}
.seo-search-icon {
  width: 15px;
  height: 15px;
  border: 2px solid #5f6368;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}
.seo-search-icon::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 8px;
  background: #5f6368;
  bottom: -7px;
  right: -1px;
  transform: rotate(-45deg);
}
.seo-rank-demo .seo-bar-text {
  font-size: 14px;
  color: #202124;
  margin: 0;
  line-height: 1.4;
}
.seo-rank-demo-body {
  position: relative;
  padding: 16px 18px 20px;
}
.seo-row {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  transition: transform 1.4s cubic-bezier(0.65, 0, 0.35, 1), opacity 1s ease;
  will-change: transform;
}
.seo-rank-demo .seo-row-url {
  font-size: 13px;
  color: #006621;
  margin: 0 0 2px;
  line-height: 1.4;
}
.seo-rank-demo .seo-row-title {
  font-size: 18px;
  color: #1a0dab;
  margin: 0;
  line-height: 1.3;
  font-family: Arial, sans-serif;
}
.seo-rank-demo .seo-row-featured .seo-row-title { font-weight: 700; }
.seo-rank-demo .seo-row-desc {
  font-size: 13px;
  color: #4d5156;
  margin: 4px 0 0;
  line-height: 1.5;
}

/* ============================================
   GEO PARTICLE ANIMATION (Optimisation page)
   ============================================ */
.geo-particle-canvas {
  width: 100%;
  height: 100%;
  background: var(--off-black);
  display: block;
}

/* ============================================
   META ADS NOTIFICATION STACK (Optimisation page)
   ============================================ */
.meta-phone-outer {
  width: 100%;
  height: 100%;
  background: var(--off-black);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.meta-phone {
  width: 220px;
  height: 460px;
  max-height: 100%;
  background: #1a1a1a;
  border-radius: 32px;
  border: 3px solid #2a2a2a;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  background-image: linear-gradient(180deg, #2c2c2e, #1c1c1e);
}
.meta-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 14px;
  background: #0a0a0a;
  border-radius: 8px;
  z-index: 10;
}
.meta-notif-viewport {
  position: absolute;
  top: 34px;
  left: 10px;
  right: 10px;
  bottom: 0;
  overflow: hidden;
}
.meta-notif-stack { position: relative; }
.meta-notif-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-16px);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.3s ease;
}
.meta-notif-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  flex-shrink: 0;
  font-family: Arial, sans-serif;
}
.meta-notif-body { flex: 1; min-width: 0; }
.meta-phone .meta-notif-title {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.meta-phone .meta-notif-sub {
  margin: 0;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  font-family: Arial, sans-serif;
  line-height: 1.4;
}
.meta-phone-home-bar {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 2px;
}

/* ============================================
   GOOGLE ADS KEYWORD BULLSEYE (Optimisation page)
   ============================================ */
.gads-bullseye-canvas {
  width: 100%;
  height: 100%;
  background: var(--off-black);
  display: block;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  section { padding: 80px 32px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  .top-bar-phone { display: none; }
}
@media (max-width: 768px) {
  section { padding: 64px 20px; }
  .hero { padding: calc(var(--nav-height) + 60px) 20px 40px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .work-intro { grid-template-columns: 1fr; gap: 28px; padding: 0 20px; }
  .work-grid { grid-template-columns: 1fr; padding: 0 20px 32px; }
  .opt-grid { grid-template-columns: 1fr; }
  .opt-services { grid-template-columns: 1fr; }
  .quote-banner { padding: 64px 20px; }
  footer { flex-direction: column; text-align: center; }
  .video-modal { padding: 16px; }
  .video-modal-close { top: -40px; font-size: 1.6rem; }
}

/* ── Nav logo image ── */
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; display: block; }
@media (max-width: 768px) {
  .logo img { height: 34px; }
}

/* ── Hero video sound toggle ── */
.hero-sound-toggle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--off-white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 9px 16px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-sound-toggle:hover {
  border-color: rgba(201,169,110,0.5);
  background: rgba(0,0,0,0.75);
}
.hero-sound-toggle .icon-wave {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.hero-sound-toggle .icon-wave i {
  width: 2px;
  background: var(--gold);
  border-radius: 1px;
  height: 4px;
}
.hero-sound-toggle.playing .icon-wave i {
  animation: soundBar 0.9s ease-in-out infinite;
}
.hero-sound-toggle .icon-wave i:nth-child(2) { animation-delay: 0.15s; height: 8px; }
.hero-sound-toggle .icon-wave i:nth-child(3) { animation-delay: 0.3s; height: 6px; }
@keyframes soundBar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(2.1); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-sound-toggle.playing .icon-wave i { animation: none; }
}

/* ── Cursor distortion trail lenses ── */
.cursor-lens {
  position: fixed;
  top: 0;
  left: 0;
  width: 95px;
  height: 95px;
  margin: -47.5px 0 0 -47.5px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 90;
  backdrop-filter: url(#cursorWarp);
  -webkit-backdrop-filter: url(#cursorWarp);
  -webkit-mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 68%);
  mask-image: radial-gradient(circle, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 68%);
  opacity: 0;
  will-change: transform, opacity;
}
@media (prefers-reduced-motion: reduce) {
  .cursor-lens { display: none !important; }
}

/* ── Hero fullscreen toggle ── */
.hero-fs-toggle {
  position: absolute;
  bottom: 16px;
  right: 130px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--off-white);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.hero-fs-toggle:hover {
  border-color: rgba(201,169,110,0.5);
  background: rgba(0,0,0,0.75);
}
.hero-fs-toggle .fs-icon {
  width: 14px;
  height: 14px;
  position: relative;
  display: block;
}
/* four expand corners */
.hero-fs-toggle .fs-icon::before,
.hero-fs-toggle .fs-icon::after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-color: var(--gold);
  border-style: solid;
}
.hero-fs-toggle .fs-icon::before {
  top: 0; left: 0;
  border-width: 1.5px 0 0 1.5px;
}
.hero-fs-toggle .fs-icon::after {
  bottom: 0; right: 0;
  border-width: 0 1.5px 1.5px 0;
}
.hero-fs-toggle.is-fullscreen .fs-icon::before {
  border-width: 0 0 1.5px 1.5px;
  top: auto; bottom: 0;
}
.hero-fs-toggle.is-fullscreen .fs-icon::after {
  border-width: 1.5px 1.5px 0 0;
  bottom: auto; top: 0;
}

/* When the hero wrapper itself is fullscreen, fill the screen and center the video */
.hero-video-wrap:fullscreen {
  aspect-ratio: auto;
  width: 100vw;
  height: 100vh;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}
.hero-video-wrap:fullscreen video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero-video-wrap:-webkit-full-screen {
  width: 100vw; height: 100vh; border: none; border-radius: 0; background: #000;
}
.hero-video-wrap:-webkit-full-screen video { width:100%; height:100%; object-fit: contain; }

@media (max-width: 768px) {
  .hero-fs-toggle { right: 118px; }
}
