/* VLK EVENTS LLC - Design System v1
 * Stack: hand CSS plus Bootstrap 5.3.3 plus Lucide. Mobile first.
 * Palette: Dark Stage plus Spotlight. Light sections for reading.
 * Rules: Lucide only, no Bootstrap Icons, no emojis, hyphen - only.
 */

:root {
  --bg-dark: #0B0E14;
  --bg: #FFFFFF;
  --ink: #12151C;
  --accent: #FF6B1A;
  --accent-2: #7C3AED;
  --muted: #6B7280;
  --line: #E5E7EB;
  --overlay: rgba(11, 14, 20, 0.72);
  --overlay-soft: rgba(11, 14, 20, 0.55);
  --card: #FFFFFF;
  --dark-2: #141927;
  --dark-3: #1D2436;
  --accent-ink: #9A3D00;
  --accent-soft: #FFF1E7;
  --focus-ring: rgba(255, 107, 26, 0.45);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(11, 14, 20, 0.08);
  --shadow: 0 8px 24px rgba(11, 14, 20, 0.10);
  --shadow-lg: 0 20px 48px rgba(11, 14, 20, 0.18);
  --header-h: 72px;
  --header-bg: rgba(11, 14, 20, 0.85);
  --glass-bg: rgba(11, 14, 20, 0.85);
  --glass-border: rgba(255, 255, 255, 0.10);
  --gradient-accent: linear-gradient(135deg, #FF6B1A 0%, #E85A0A 55%, #7C3AED 130%);
  --gradient-hero: linear-gradient(120deg, rgba(11, 14, 20, 0.92) 15%, rgba(11, 14, 20, 0.68) 55%, rgba(124, 58, 237, 0.32) 100%);
  --gradient-cta: linear-gradient(135deg, #FF6B1A 0%, #C2410C 55%, #7C3AED 135%);
  --glow-accent: 0 8px 30px rgba(255, 107, 26, 0.35);
  --glow-soft: 0 10px 40px rgba(124, 58, 237, 0.25);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 3rem;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: var(--accent-ink);
  text-underline-offset: 3px;
}

a:hover {
  color: var(--accent);
}

section[id],
div[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 12px;
  color: #fff;
}

/* ---------- Type ---------- */
h1, h2, h3, h4 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.2rem, 5vw + 1rem, 4.5rem);
}

h2 {
  font-size: clamp(1.7rem, 3vw + 1rem, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 1.6vw + 0.9rem, 1.5rem);
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.05rem, 1vw + 0.9rem, 1.25rem);
  line-height: 1.65;
  font-weight: 400;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.eyebrow-light {
  color: var(--accent);
}

.muted,
.text-muted-vlk {
  color: var(--muted);
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.text-balance {
  text-wrap: balance;
}

.long-email {
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---------- Layout helpers ---------- */
.section {
  padding: 3.5rem 0;
  width: 100%;
  max-width: 100%;
}

.section-sm {
  padding: 2.5rem 0;
  width: 100%;
  max-width: 100%;
}

.section-dark {
  background: var(--bg-dark);
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark .muted,
.section-dark .text-muted-vlk {
  color: #B9C0CC;
}

.section-light {
  background: var(--bg);
  color: var(--ink);
}

.section-soft {
  background: #F8FAFC;
}

.divider {
  height: 1px;
  width: 100%;
  max-width: 100%;
  background: var(--line);
  border: 0;
  margin: 2rem 0;
}

.divider-light {
  background: rgba(255, 255, 255, 0.16);
}

.img-fluid-vlk,
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.rounded-vlk {
  border-radius: var(--radius);
}

.overlay-dark {
  background: var(--overlay);
}

.grad-wash {
  background: linear-gradient(135deg, rgba(255, 107, 26, 0.22), rgba(124, 58, 237, 0.22));
}

/* ---------- Lucide ---------- */
.lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  flex-shrink: 0;
  vertical-align: -3px;
}

.lucide-sm {
  width: 16px;
  height: 16px;
}

.lucide-lg {
  width: 28px;
  height: 28px;
}

.lucide-xl {
  width: 36px;
  height: 36px;
}

.btn .lucide {
  width: 18px;
  height: 18px;
}

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

.icon-badge-dark {
  background: rgba(255, 107, 26, 0.16);
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border-radius: var(--radius-pill);
  padding: 0.8rem 1.5rem;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--focus-ring);
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #E85A0A;
  border-color: #E85A0A;
  color: #fff;
}

.btn-dark-vlk,
.btn-dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.btn-dark-vlk:hover,
.btn-dark:hover {
  background: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #fff;
}

.btn-outline-light-vlk,
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.btn-outline-light-vlk:hover,
.btn-outline-light:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.btn-outline-dark-vlk {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-outline-dark-vlk:hover {
  background: var(--ink);
  color: #fff;
}

.btn-sm {
  min-height: 40px;
  padding: 0.55rem 1rem;
  font-size: 0.92rem;
}

.btn-lg {
  min-height: 52px;
  padding: 1rem 2rem;
  font-size: 1.08rem;
}

.btn-block-mobile {
  width: 100%;
}

/* ---------- Forms base ---------- */
.form-control,
.form-select,
textarea.form-control {
  font-size: 16px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border-color: var(--line);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--focus-ring);
}

.form-label {
  font-weight: 600;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.invalid-feedback {
  font-size: 0.9rem;
}

/* ---------- Header / Navbar glass ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: var(--header-h);
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.9);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.site-header-dark {
  background: rgba(11, 14, 20, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.site-header-dark.scrolled {
  background: rgba(11, 14, 20, 0.94);
  box-shadow: var(--shadow-lg);
}

.navbar-vlk {
  padding-top: 0.6rem;
  padding-bottom: 0.6rem;
}

.navbar-vlk .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.site-header-dark .navbar-vlk .navbar-brand {
  color: #fff;
}

.navbar-vlk .navbar-brand img {
  height: 40px;
  width: auto;
  display: block;
}

.navbar-vlk .nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
}

.site-header-dark .navbar-vlk .nav-link {
  color: #E8EBF1;
}

.navbar-vlk .nav-link:hover {
  color: var(--accent);
  background: rgba(255, 107, 26, 0.08);
}

.navbar-vlk .nav-link.active {
  color: var(--accent);
}

.navbar-vlk .navbar-toggler {
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0.5rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-header-dark .navbar-vlk .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.navbar-vlk .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  min-width: 260px;
}

.navbar-vlk .dropdown-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
}

.navbar-vlk .dropdown-item:hover,
.navbar-vlk .dropdown-item:focus {
  background: var(--accent-soft);
  color: var(--ink);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.navbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  padding: 0 0.5rem;
  white-space: nowrap;
}

.site-header-dark .navbar-phone {
  color: #fff;
}

.navbar-phone:hover {
  color: var(--accent);
}

/* ---------- Glass nav - dark sticky nav used in HTML as .glass-nav ---------- */
.glass-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: var(--header-h);
  background: rgba(11, 14, 20, 0.85);
  background: var(--header-bg);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.glass-nav.scrolled {
  background: rgba(11, 14, 20, 0.94);
  box-shadow: var(--shadow-lg);
}

.glass-nav .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  text-decoration: none;
}

.glass-nav .navbar-brand img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}

.glass-nav .brand-text {
  color: #fff;
  line-height: 1.1;
}

.glass-nav .nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.98rem;
  color: #fff;
  padding: 0.5rem 0.85rem;
  border-radius: 8px;
  text-decoration: none;
  opacity: 1;
}

.glass-nav .nav-link:hover,
.glass-nav .nav-link:focus {
  color: var(--accent);
  background: rgba(255, 107, 26, 0.14);
}

.glass-nav .nav-link.active,
.glass-nav .nav-link[aria-current="page"] {
  color: var(--accent);
  background: rgba(255, 107, 26, 0.16);
}

.glass-nav .navbar-toggler {
  min-width: 44px;
  min-height: 44px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 0.5rem 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.glass-nav .navbar-toggler:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--focus-ring);
}

.glass-nav .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.glass-nav .navbar-collapse {
  background: transparent;
}

.glass-nav .navbar-collapse.show,
.glass-nav .navbar-collapse.collapsing {
  background: #141927;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-top: 0.75rem;
  box-shadow: var(--shadow-lg);
}

.glass-nav .navbar-collapse.show .nav-link,
.glass-nav .navbar-collapse.collapsing .nav-link {
  width: 100%;
  padding: 0.75rem 0.9rem;
  color: #fff;
}

.glass-nav .dropdown-menu {
  background: #141927;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  min-width: 260px;
}

.glass-nav .dropdown-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.6rem 0.8rem;
  color: #fff;
  text-decoration: none;
}

.glass-nav .dropdown-item:hover,
.glass-nav .dropdown-item:focus {
  background: rgba(255, 107, 26, 0.18);
  color: #fff;
}

.glass-nav .navbar-cta .btn {
  white-space: nowrap;
}

/* Mobile menu: full width stacked links */
.navbar-vlk .navbar-collapse {
  background: transparent;
}

.navbar-vlk .navbar-collapse.show,
.navbar-vlk .navbar-collapse.collapsing {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin-top: 0.75rem;
  box-shadow: var(--shadow);
}

.site-header-dark .navbar-vlk .navbar-collapse.show {
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.navbar-vlk .navbar-collapse.show .nav-link,
.navbar-vlk .navbar-collapse.collapsing .nav-link {
  width: 100%;
  padding: 0.75rem 0.9rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--overlay);
  background-image: linear-gradient(120deg, rgba(11, 14, 20, 0.88) 20%, rgba(11, 14, 20, 0.62) 55%, rgba(124, 58, 237, 0.28) 100%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero .lead {
  color: #D7DCE5;
  max-width: 42rem;
}

.hero-ctas {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
  padding-left: 0;
}

.hero-stat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero-stat-label {
  font-size: 0.88rem;
  color: #B9C0CC;
}

.hero-spotlight {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(480px circle at var(--spot-x, 50%) var(--spot-y, 30%), rgba(255, 107, 26, 0.20), transparent 65%);
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: #B9C0CC;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}

.scroll-cue .lucide {
  animation: vlk-bounce 2s ease-in-out infinite;
}

@keyframes vlk-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
}

.anchor-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.anchor-pills .btn {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* ---------- Hero dark variant plus bg img plus orbs plus particles plus reveal ---------- */
.hero-dark {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  padding: 4.5rem 0 3.5rem;
  min-height: 92vh;
  min-height: 92svh;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero-dark h1,
.hero-dark h2,
.hero-dark h3 {
  color: #fff;
}

.hero-dark h1 {
  font-size: clamp(2.2rem, 5vw + 1rem, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero-dark .lead {
  color: #D7DCE5;
  max-width: 42rem;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: vlk-kenburns 24s ease-in-out infinite alternate;
}

@keyframes vlk-kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.5%, 1.5%); }
}

.hero-dark .hero-overlay {
  background: var(--overlay);
  background-image: var(--gradient-hero);
}

.hero-orb {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
  opacity: 0.9;
}

.orb-1 {
  width: 420px;
  height: 420px;
  left: -120px;
  top: -120px;
  background: radial-gradient(circle, rgba(255, 107, 26, 0.38) 0%, rgba(255, 107, 26, 0) 70%);
  animation: vlk-float-1 9s ease-in-out infinite;
}

.orb-2 {
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.42) 0%, rgba(124, 58, 237, 0) 70%);
  animation: vlk-float-2 11s ease-in-out infinite;
}

@keyframes vlk-float-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(28px, 32px); }
}

@keyframes vlk-float-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-28px, -30px); }
}

#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.hero-dark .container,
.hero .container {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}

.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="1"],
.revealed[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"],
.revealed[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"],
.revealed[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"],
.revealed[data-delay="4"] { transition-delay: 0.32s; }

.stat-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  color: #fff;
  height: 100%;
}

.stat-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.stat-card span {
  font-size: 0.9rem;
  color: #B9C0CC;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  background: rgba(255, 107, 26, 0.16);
  border: 1px solid rgba(255, 107, 26, 0.45);
  border-radius: var(--radius-pill);
  padding: 0.45rem 1rem;
  margin-bottom: 1rem;
}

.eyebrow-pill .lucide {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  padding: 0.9rem 0;
}

.marquee-light {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: max-content;
  animation: vlk-marquee 32s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.marquee-light .marquee-pill {
  border-color: var(--line);
  background: #F8FAFC;
  color: var(--ink);
}

.marquee-pill .lucide {
  width: 16px;
  height: 16px;
  color: var(--accent);
}

@keyframes vlk-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Cards ---------- */
.cards-equal .card,
.service-card,
.work-card,
.gear-card,
.testimonial-card {
  height: 100%;
}

.service-card,
.work-card,
.gear-card,
.rental-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card-img,
.work-card-img,
.rental-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.service-card-body,
.work-card-body,
.gear-card-body,
.rental-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.service-card-title,
.work-card-title {
  margin: 0;
  font-size: 1.2rem;
}

.service-card-copy {
  color: var(--muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.93rem;
}

.mini-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.mini-list .lucide {
  width: 16px;
  height: 16px;
  color: var(--accent);
  margin-top: 4px;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  text-decoration: none;
  min-height: 44px;
  padding-top: 0.5rem;
}

.card-link .lucide {
  width: 18px;
  height: 18px;
}

.category-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.75rem;
}

.category-badge-dark {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.work-card-meta {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  background: #F3F4F6;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  padding: 0.25rem 0.7rem;
  color: var(--ink);
}

/* Hover lift on desktop with fine pointer only */
@media (hover: hover) and (min-width: 992px) {
  .service-card:hover,
  .work-card:hover,
  .gear-card:hover,
  .rental-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
  }
}

.gear-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.section-dark .testimonial-card {
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.12);
  color: #E8EBF1;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent);
}

.stars .lucide {
  width: 16px;
  height: 16px;
}

/* ---------- Split section ---------- */
.split-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0;
  display: grid;
  gap: 0.7rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-weight: 500;
}

.checklist .lucide {
  color: var(--accent);
  margin-top: 3px;
}

.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.stat-badge strong {
  font-size: 1.5rem;
  line-height: 1;
}

/* ---------- Filter buttons and tabs ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.filter-btn {
  min-height: 44px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
  padding: 0.55rem 1.15rem;
  cursor: pointer;
}

.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.filter-btn.active,
.filter-btn[aria-pressed="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pills-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pills-tabs .nav-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 600;
  padding: 0.55rem 1.2rem;
}

.pills-tabs .nav-link.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.filter-count {
  font-size: 0.9rem;
  color: var(--muted);
}

.empty-state {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  color: var(--muted);
}

/* ---------- Process timeline ---------- */
.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem 1.25rem 4.5rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.section-dark .process-step {
  background: var(--dark-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.process-num {
  position: absolute;
  left: 1.25rem;
  top: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
}

.process-step h3 {
  margin: 0 0 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
}

.section-dark .process-step p {
  color: #B9C0CC;
}

/* ---------- Carousel tweaks ---------- */
.carousel-vlk .carousel-item {
  padding: 0.5rem 0.25rem 2.5rem;
}

.carousel-vlk .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--line);
  min-width: 12px;
  min-height: 12px;
}

.carousel-vlk .carousel-indicators .active {
  background-color: var(--accent);
}

/* ---------- Banner CTA ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  isolation: isolate;
}

.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--overlay);
}

.cta-band h2 {
  color: #fff;
}

/* ---------- Bootstrap overrides plus beauty plus missing banner CTA ---------- */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  max-width: 1320px;
}

.btn-primary {
  background: var(--gradient-accent);
  background-color: var(--accent);
  border-color: #E85A0A;
  color: #fff;
  box-shadow: var(--glow-accent);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #FF7A2E 0%, #D94F00 60%, #6D28D9 140%);
  border-color: #D94F00;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(255, 107, 26, 0.42);
}

.btn-light {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.btn-light:hover,
.btn-light:focus {
  background: #F3F4F6;
  border-color: #F3F4F6;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);
  color: #fff;
}

.card {
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.badge-vlk,
.badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--accent-soft);
  color: var(--accent-ink);
  border: 1px solid rgba(255, 107, 26, 0.28);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.8rem;
}

.badge-dark-vlk {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.accordion-button:not(.collapsed) {
  background: var(--accent-soft);
  color: var(--ink);
}

.carousel-control-prev,
.carousel-control-next {
  width: 48px;
  height: 48px;
  top: 42%;
  border-radius: 50%;
  background: rgba(11, 14, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.22);
  opacity: 0.95;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  border-color: var(--accent);
  opacity: 1;
}

.rentals-banner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: var(--shadow-lg);
}

.rentals-banner h2,
.rentals-banner h3 {
  color: #fff;
}

.rentals-banner p {
  color: #D7DCE5;
}

.rentals-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(560px circle at 15% 20%, rgba(255, 107, 26, 0.28), transparent 65%), radial-gradient(620px circle at 90% 90%, rgba(124, 58, 237, 0.32), transparent 65%);
  pointer-events: none;
}

.cta-final {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-dark);
  color: #fff;
  padding: 4rem 0;
  text-align: left;
}

.cta-final h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw + 1rem, 3rem);
}

.cta-final p {
  color: #D7DCE5;
  max-width: 44rem;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--overlay);
  background-image: linear-gradient(120deg, rgba(11, 14, 20, 0.90) 20%, rgba(11, 14, 20, 0.65) 55%, rgba(194, 65, 12, 0.35) 100%);
  pointer-events: none;
}

.footer-dark {
  background: var(--bg-dark);
  color: #C9D0DC;
}

.footer-dark h3,
.footer-dark h4 {
  color: #fff;
}

.footer-dark a {
  color: #C9D0DC;
}

.footer-dark a:hover {
  color: var(--accent);
}

/* ---------- Accordion ---------- */
.accordion-vlk .accordion-item,
.accordion .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.accordion-vlk .accordion-button,
.accordion .accordion-button {
  font-weight: 700;
  font-size: 1rem;
  min-height: 44px;
  padding: 1rem 1.25rem;
  color: var(--ink);
}

.accordion-vlk .accordion-button:not(.collapsed),
.accordion .accordion-button:not(.collapsed) {
  background: var(--accent-soft);
  color: var(--ink);
  box-shadow: none;
}

.accordion-vlk .accordion-button:focus,
.accordion .accordion-button:focus {
  box-shadow: 0 0 0 4px var(--focus-ring);
  border-color: var(--accent);
}

.accordion-vlk .accordion-body,
.accordion .accordion-body {
  color: #374151;
  line-height: 1.65;
}

/* ---------- Hours alert ---------- */
.hours-alert {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #FFFBEB;
  padding: 1rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.hours-alert .lucide {
  color: var(--accent);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: #C9D0DC;
  padding: 3.5rem 0 0;
  font-size: 0.96rem;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.site-footer a {
  color: #C9D0DC;
  text-decoration: none;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 42px;
  width: auto;
}

.footer-nap {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0;
}

.footer-nap a {
  overflow-wrap: anywhere;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.15rem;
}

.footer-areas .accordion-item {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.14);
}

.footer-areas .accordion-button {
  background: transparent;
  color: #fff;
  font-size: 0.95rem;
  box-shadow: none;
}

.footer-areas .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.footer-areas .accordion-body {
  color: #C9D0DC;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1040;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: #E85A0A;
}

/* ---------- Toast ---------- */
.toast-vlk,
.toast {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.toast-header {
  font-weight: 700;
}

.toast-success {
  border-left: 5px solid #16A34A;
}

/* ---------- Modal tweaks ---------- */
.modal-content {
  border-radius: var(--radius-lg);
  border: 0;
  overflow: hidden;
}

.modal-header {
  border-bottom: 1px solid var(--line);
}

.modal-footer {
  border-top: 1px solid var(--line);
}

.modal-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
}

/* ---------- Map ---------- */
.map-embed {
  border: 0;
  width: 100%;
  max-width: 100%;
  min-height: 300px;
  border-radius: var(--radius);
}

/* ---------- Contact cards ---------- */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  height: 100%;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.contact-card a {
  overflow-wrap: anywhere;
}

/* ---------- Mobile first media queries ---------- */
@media (min-width: 576px) {
  .hero-ctas {
    display: flex;
    flex-wrap: wrap;
  }

  .btn-block-mobile {
    width: auto;
  }

  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-band {
    padding: 3rem 2.5rem;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }

  .hero {
    padding: 6rem 0 5rem;
    min-height: 78vh;
  }

  .service-card-img,
  .work-card-img,
  .rental-card-img {
    height: 220px;
  }

  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-embed {
    min-height: 380px;
  }
}

@media (min-width: 992px) {
  .hero {
    min-height: 92vh;
  }

  .hero .lead {
    font-size: 1.25rem;
  }

  .navbar-vlk .navbar-collapse.show,
  .navbar-vlk .navbar-collapse.collapsing {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
  }

  .navbar-vlk .navbar-collapse.show .nav-link {
    width: auto;
    padding: 0.5rem 0.85rem;
  }

  .process {
    grid-template-columns: repeat(4, 1fr);
  }

  .section {
    padding: 5rem 0;
  }
}

@media (min-width: 1200px) {
  .hero-stats {
    max-width: 56rem;
  }

  .service-card-img,
  .work-card-img {
    height: 230px;
  }
}

@media (min-width: 1400px) {
  body {
    font-size: 17px;
  }
}

/* ---------- Responsive hardening plus fluid media plus no h-scroll ---------- */
html,
body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
}

.hero,
.hero-dark {
  min-height: auto;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw + 1rem, 4.5rem);
}

.rentals-grid,
.cards-grid,
.grid-auto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 576px) {
  .rentals-grid,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-final {
    padding: 4.5rem 0;
  }
  .rentals-banner {
    padding: 3rem 2.25rem;
  }
}

@media (min-width: 768px) {
  .rentals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .hero,
  .hero-dark {
    min-height: 92vh;
  }
  .rentals-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-xl {
    max-width: 1320px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }

  .marquee-track {
    animation: none;
    flex-wrap: wrap;
    width: auto;
  }

  .scroll-cue .lucide {
    animation: none;
  }

  .hero-spotlight {
    display: none;
  }

  .hero-bg-img,
  .hero-orb,
  .orb-1,
  .orb-2 {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Lucide sizing keep plus focus ring plus back-to-top float ---------- */
.lucide,
.lucide-sm,
.lucide-lg,
.lucide-xl {
  flex-shrink: 0;
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
  box-shadow: 0 0 0 6px var(--focus-ring);
}

.back-to-top .lucide {
  width: 20px;
  height: 20px;
}

/* ---------- Homepage hero rebuild plus welcome strip ---------- */
.hero-content {
  max-width: 72rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  color: #E8EBF1;
  font-weight: 600;
  font-size: 0.98rem;
  margin-top: 1rem;
  margin-bottom: 0;
}
.hero-trust .lucide {
  width: 18px;
  height: 18px;
  color: var(--accent);
}
.hero-dark .hero-spotlight {
  transition: opacity 0.25s ease;
}
.hero-dark:hover .hero-spotlight,
.hero-dark:focus-within .hero-spotlight {
  opacity: 1;
}
.welcome-strip {
  background: #fff;
}
.welcome-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.welcome-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.welcome-icon .lucide {
  width: 24px;
  height: 24px;
}

/* ---------- Print ---------- */
@media print {
  .site-header,
  .back-to-top,
  .scroll-cue,
  .marquee,
  .cta-band {
    display: none;
  }
}
