/* Elite Virtual Investments - Theme styles (no Tailwind dependency) */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #02040a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #d4af37; }

html {
  scroll-behavior: smooth;
  cursor: none;
}

a, button, input, select, textarea {
  cursor: none;
}

::selection {
  background: #d4af37;
  color: #02040a;
}

/* Grain & scanline (original site effect) */
.evi-grain,
.bg-grain {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

.evi-scanline,
.bg-scanline {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9997;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0) 50%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.1));
  background-size: 100% 4px;
  opacity: 0.15;
}

@keyframes scanline {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
.evi-scanline-bar,
.scanline-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 10%;
  background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.1), transparent);
  z-index: 9997;
  animation: scanline 8s linear infinite;
  pointer-events: none;
}

body {
  overflow-x: hidden;
  background-color: #02040a;
  color: #cbd5e1;
}

/* ========== Preloader ========== */
.evi-preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: #02040a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.evi-preloader.evi-preloader-hidden {
  transform: translateY(-100%);
}
.evi-preloader-grain {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.evi-preloader-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.evi-preloader-pct {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
}
.evi-preloader-bar-wrap {
  width: 8rem;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}
.evi-preloader-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: #d4af37;
  transition: width 0.3s;
}
.evi-preloader-label {
  margin-top: 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: #d4af37;
  text-transform: uppercase;
  font-weight: 500;
}

/* ========== Navigation (matches original) ========== */
.evi-nav {
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: background 0.5s, border-color 0.5s, padding 0.3s;
  border-bottom: 1px solid transparent;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.evi-nav.evi-nav-scrolled {
  background: rgba(2, 4, 10, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.2);
}
.evi-nav.evi-nav-scrolled .evi-nav-logo-icon-wrap {
  background: rgba(212, 175, 55, 0.2);
}
.evi-nav.evi-nav-scrolled .evi-nav-logo-icon {
  color: #d4af37;
}
.evi-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .evi-nav-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .evi-nav-inner { padding-left: 2rem; padding-right: 2rem; }
}
.evi-nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.evi-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  z-index: 10;
}
.evi-nav-logo-icon-wrap {
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: #d4af37;
  transition: background 0.3s;
}
.evi-nav-logo:hover .evi-nav-logo-icon-wrap {
  background: #d4af37;
}
.evi-nav-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
  transition: color 0.3s;
}
.evi-nav-logo-text {
  display: flex;
  flex-direction: column;
}
.evi-nav-logo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.025em;
}
.evi-nav-logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #d4af37;
  text-transform: uppercase;
}
.evi-nav-links {
  display: none;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .evi-nav-links { display: flex; }
}
.evi-nav-links-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.evi-nav-links-list li { margin: 0; }
.evi-nav-links-list a {
  position: relative;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.3s;
  z-index: 10;
  text-decoration: none;
}
.evi-nav-links-list a:hover { color: #fff; }
.evi-nav-links-list .current-menu-item > a {
  color: #d4af37;
}
.evi-nav-links-list .current-menu-item > a::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4af37;
}
.evi-nav-spotlight {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: left 0.3s, width 0.3s, opacity 0.3s;
  pointer-events: none;
}
.evi-nav-link {
  position: relative;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  transition: color 0.3s;
  z-index: 10;
}
.evi-nav-link:hover {
  color: #fff;
}
.evi-nav-link-active {
  color: #d4af37;
}
.evi-nav-link-active::after {
  content: "";
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d4af37;
}
.evi-nav-cta {
  margin-left: 1.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  background: linear-gradient(to right, #d4af37, #d4af37);
  color: #02040a;
  font-size: 0.875rem;
  font-weight: 700;
  transition: box-shadow 0.3s, transform 0.3s;
  z-index: 10;
}
.evi-nav-cta:hover {
  box-shadow: 0 0 20px rgba(192, 160, 98, 0.4);
  transform: translateY(-2px);
}
.evi-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: #fff;
  background: none;
  border: none;
  cursor: none;
}
@media (min-width: 768px) {
  .evi-nav-toggle { display: none; }
}
.evi-nav-toggle:hover {
  color: #d4af37;
}
.evi-nav-toggle-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.evi-nav-toggle-close {
  display: none;
}
.evi-nav-toggle.evi-nav-open .evi-nav-toggle-close {
  display: block;
}
.evi-nav-toggle.evi-nav-open .evi-nav-toggle-icon:not(.evi-nav-toggle-close) {
  display: none;
}
.evi-nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(2, 4, 10, 0.95);
  backdrop-filter: blur(24px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transition: transform 0.3s;
  transform: translateX(100%);
}
.evi-nav-mobile.evi-nav-mobile-open {
  transform: translateX(0);
}
@media (min-width: 768px) {
  .evi-nav-mobile { display: none; }
}
.evi-nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem;
  color: #94a3b8;
  background: none;
  border: none;
  cursor: none;
}
.evi-nav-mobile-close:hover {
  color: #fff;
}
.evi-nav-mobile-close-icon {
  width: 2rem;
  height: 2rem;
}
.evi-nav-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.evi-nav-mobile-list li { margin: 0; }
.evi-nav-mobile-list a {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #cbd5e1;
  text-decoration: none;
  display: block;
}
.evi-nav-mobile-list a:hover { color: #d4af37; }
.evi-nav-mobile-link {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  transition: color 0.2s;
}
.evi-nav-mobile-link:hover {
  color: #d4af37;
}
.evi-nav-mobile-cta {
  margin-top: 2rem;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  background: #d4af37;
  color: #02040a;
  font-weight: 700;
  font-size: 1.125rem;
}
.evi-nav-mobile-cta:hover {
  color: #02040a;
}

/* ========== Footer (matches original) ========== */
.evi-footer {
  background: #02040a;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 3rem;
}
.evi-footer-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20vw;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.evi-footer-inner {
  position: relative;
  z-index: 10;
}
.evi-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .evi-footer-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
  }
  .evi-footer-brand { grid-column: span 5; }
  .evi-footer-links-col { grid-column: 7 / span 3; }
  .evi-footer-contact-col { grid-column: span 3; }
}
.evi-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  width: fit-content;
}
.evi-footer-logo:hover .evi-footer-logo-icon-wrap {
  background: #fff;
}
.evi-footer-logo-icon-wrap {
  padding: 0.5rem;
  border-radius: 0.75rem;
  background: #d4af37;
  transition: background 0.3s, color 0.3s;
}
.evi-footer-logo-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #02040a;
}
.evi-footer-logo-text { display: flex; flex-direction: column; }
.evi-footer-logo-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.evi-footer-logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: #d4af37;
  text-transform: uppercase;
}
.evi-footer-tagline {
  font-size: 1.125rem;
  line-height: 1.625;
  font-weight: 300;
  color: #94a3b8;
  max-width: 28rem;
  margin: 0 0 2rem 0;
}
.evi-footer-social {
  display: flex;
  gap: 1rem;
}
.evi-footer-social-link {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.evi-footer-social-link:hover {
  background: #d4af37;
  border-color: #d4af37;
  color: #02040a;
}
.evi-footer-social-icon {
  width: 1.25rem;
  height: 1.25rem;
}
.evi-footer-heading {
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0 0 2rem 0;
}
.evi-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.evi-footer-links li { margin-bottom: 1rem; }
.evi-footer-links a {
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
  text-decoration: none;
}
.evi-footer-links a:hover { color: #d4af37; }
.evi-footer-links a span {
  transition: transform 0.3s;
}
.evi-footer-links a:hover span {
  transform: translateX(0.5rem);
}
.evi-footer-link-arrow {
  width: 0.75rem;
  height: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
  flex-shrink: 0;
}
.evi-footer-links a:hover .evi-footer-link-arrow {
  opacity: 1;
}
.evi-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.evi-footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 300;
}
.evi-footer-contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #d4af37;
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}
.evi-footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: #475569;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .evi-footer-bottom { flex-direction: row; }
}
.evi-footer-copy { margin: 0; }
.evi-footer-legal {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .evi-footer-legal { margin-top: 0; }
}
.evi-footer-legal a {
  color: inherit;
}
.evi-footer-legal a:hover { color: #fff; }

/* ========== Home / Front Page (matches original) ========== */
.evi-home {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
  background: #02040a;
}

.evi-home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
}
.evi-home-hero-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  opacity: 0.3;
  mix-blend-mode: screen;
}
.evi-home-hero-sphere {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.4;
}
.evi-home-hero-grid-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  transform: rotateX(60deg) scale(2) translateY(-20%);
}
.evi-home-hero-grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 200%;
  background-image: linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  border-top: 1px solid rgba(255,255,255,0.05);
  animation: evi-grid-flow 20s linear infinite;
}
@keyframes evi-grid-flow {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}
.evi-home-hero-gradient-top {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, #02040a, rgba(2,4,10,0.6), transparent);
}
.evi-home-hero-gradient-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: 0;
  background: linear-gradient(to top, #02040a, transparent);
}
.evi-home-hero-content {
  position: relative;
  z-index: 20;
  text-align: center;
  padding-top: 8rem;
}
.evi-home-hero-badge {
  display: inline-block;
  margin-bottom: 2.5rem;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.05);
  color: #d4af37;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.1);
}
.evi-home-hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin: 0 0 2rem 0;
  color: #fff;
}
.evi-home-hero-line {
  display: block;
  overflow: hidden;
}
.evi-home-hero-reveal {
  opacity: 0;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.evi-home-hero-empire {
  position: relative;
  display: inline-block;
  color: transparent;
  background: linear-gradient(to right, #fff5d6, #d4af37, #8a7024);
  -webkit-background-clip: text;
  background-clip: text;
  padding-bottom: 1rem;
}
.evi-home-hero-empire-text {
  display: block;
  overflow: hidden;
  min-height: 1.1em;
  letter-spacing: -0.04em;
}
.evi-home-hero-empire-glow {
  position: absolute;
  inset: -1rem;
  background: rgba(212, 175, 55, 0.2);
  filter: blur(48px);
  border-radius: 50%;
  z-index: -1;
  opacity: 0.4;
  animation: evi-pulse 2s ease-in-out infinite;
}
@keyframes evi-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.6; }
}
.evi-home-hero-tagline {
  margin: 0 auto 3rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.625;
}
@media (min-width: 768px) {
  .evi-home-hero-tagline { font-size: 1.25rem; }
}
.evi-home-hero-tagline-highlight {
  color: #fff;
  font-weight: 400;
}
.evi-home-hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}
@media (min-width: 640px) {
  .evi-home-hero-buttons { flex-direction: row; }
}
.evi-home-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 1.25rem 3rem;
  border-radius: 9999px;
  transition: all 0.3s;
}
.evi-home-hero-btn-primary {
  background: #d4af37;
  color: #02040a;
  border: 1px solid transparent;
}
.evi-home-hero-btn-primary:hover {
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}
.evi-home-hero-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.evi-home-hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}
.evi-home-hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  z-index: 20;
  opacity: 0;
  animation: evi-fade-in 1s ease-out 3.5s forwards;
}
@keyframes evi-fade-in {
  to { opacity: 1; }
}
.evi-home-hero-scroll-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: #64748b;
}
.evi-home-hero-scroll-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, #d4af37, transparent);
}

.evi-home-wave {
  width: 100%;
  height: 6rem;
  overflow: hidden;
  position: relative;
  z-index: 20;
  margin-top: -3rem;
  pointer-events: none;
}
.evi-home-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  fill: #02040a;
  filter: drop-shadow(0 -5px 10px rgba(0,0,0,0.5));
}
.evi-home-wave path {
  fill: rgba(212, 175, 55, 0.05);
}

.evi-home-expertise {
  padding: 10rem 0;
  position: relative;
  z-index: 10;
}
.evi-home-expertise-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .evi-home-expertise-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.evi-home-expertise-head-left {
  max-width: 48rem;
}
.evi-home-expertise-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.evi-home-expertise-line {
  width: 4rem;
  height: 1px;
  background: #d4af37;
}
.evi-home-expertise-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0;
}
.evi-home-expertise-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin: 0 0 1.5rem 0;
  display: block;
}
.evi-home-expertise-desc {
  margin: 0;
  max-width: 24rem;
  font-size: 1.125rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.625;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 2rem;
}
@media (min-width: 768px) {
  .evi-home-expertise-desc { margin-top: 0; }
}
.evi-home-expertise-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .evi-home-expertise-cards { grid-template-columns: repeat(3, 1fr); }
}
.evi-home-card-inner {
  position: relative;
  background: rgba(30, 41, 59, 0.4);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.evi-home-card:hover .evi-home-card-inner {
  box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
}
.evi-home-card-image-wrap {
  position: relative;
  height: 20rem;
  overflow: hidden;
}
.evi-home-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease-out, filter 1s ease-out;
  filter: grayscale(100%);
}
.evi-home-card:hover .evi-home-card-image-wrap img {
  transform: scale(1.1);
  filter: grayscale(0);
}
.evi-home-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #02040a, transparent 30%, transparent);
  opacity: 0.9;
}
.evi-home-card-icon-wrap {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 20;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.evi-home-card-icon-wrap svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}
.evi-home-card:hover .evi-home-card-icon-wrap {
  background: #d4af37;
  border-color: #d4af37;
}
.evi-home-card:hover .evi-home-card-icon-wrap svg {
  color: #02040a;
}
.evi-home-card-body {
  position: relative;
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  margin-top: -6rem;
  z-index: 20;
}
.evi-home-card-title {
  font-size: 1.875rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1rem 0;
  transition: color 0.3s;
}
.evi-home-card:hover .evi-home-card-title {
  color: #d4af37;
}
.evi-home-card-desc {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.625;
  margin: 0 0 2rem 0;
  flex-grow: 1;
  transition: color 0.3s;
}
.evi-home-card:hover .evi-home-card-desc {
  color: #e2e8f0;
}
.evi-home-card-footer {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.evi-home-card-line {
  width: 3rem;
  height: 1px;
  background: rgba(212, 175, 55, 0.5);
  margin-right: 1rem;
  transition: width 0.3s;
}
.evi-home-card:hover .evi-home-card-line {
  width: 5rem;
}
.evi-home-card-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s;
}
.evi-home-card-link svg {
  width: 1rem;
  height: 1rem;
}
.evi-home-card:hover .evi-home-card-link {
  transform: translateX(0.5rem);
}

.evi-home-stats {
  padding: 10rem 0;
  position: relative;
  background: #0f172a;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.evi-home-stats-map {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/8/80/World_map_-_low_resolution.svg/2560px-World_map_-_low_resolution.svg.png");
  background-size: cover;
  background-position: center;
  filter: invert(1);
  pointer-events: none;
}
.evi-home-stats-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.evi-home-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 4, 10, 0.5);
  backdrop-filter: blur(16px);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border-radius: 1.5rem;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .evi-home-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .evi-home-stats-grid .evi-home-stat:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.evi-home-stat {
  position: relative;
  padding: 2.5rem 3.5rem;
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(4px);
  overflow: hidden;
  transition: background 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (min-width: 768px) {
  .evi-home-stat { padding: 2.5rem 3.5rem; }
}
.evi-home-stat:hover {
  background: rgba(15, 23, 42, 0.4);
}
.evi-home-stat-corners {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.evi-home-stat-corners::before,
.evi-home-stat-corners::after {
  content: "";
  position: absolute;
  width: 0.75rem;
  height: 0.75rem;
  border-color: rgba(255, 255, 255, 0.1);
  transition: all 0.5s;
}
.evi-home-stat-corners::before {
  top: 0;
  left: 0;
  border-top: 1px solid;
  border-left: 1px solid;
}
.evi-home-stat-corners::after {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid;
  border-right: 1px solid;
}
.evi-home-stat:hover .evi-home-stat-corners::before,
.evi-home-stat:hover .evi-home-stat-corners::after {
  width: 1.5rem;
  height: 1.5rem;
  border-color: #d4af37;
}
.evi-home-stat-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.evi-home-stat-icon {
  width: 2rem;
  height: 2rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d4af37;
  transition: all 0.5s;
}
.evi-home-stat-icon svg {
  width: 2rem;
  height: 2rem;
}
.evi-home-stat:hover .evi-home-stat-icon {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.5);
}
.evi-home-stat-value {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.025em;
}
.evi-home-stat-line {
  width: 2rem;
  height: 1px;
  background: rgba(212, 175, 55, 0.3);
  margin: 1rem 0;
  transition: width 0.5s, background 0.5s;
}
.evi-home-stat:hover .evi-home-stat-line {
  width: 6rem;
  background: #d4af37;
}
.evi-home-stat-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #cbd5e1;
  margin: 0 0 0.5rem 0;
}
.evi-home-stat-sub {
  font-size: 0.75rem;
  color: #64748b;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
  margin: 0;
}

.evi-home-cta {
  padding: 8rem 0;
  position: relative;
}
.evi-home-cta-box {
  position: relative;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 2.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
}
.evi-home-cta-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  margin: -8rem -8rem 0 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(100px);
}
.evi-home-cta-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .evi-home-cta-inner { flex-direction: row; }
}
.evi-home-cta-text {
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1024px) {
  .evi-home-cta-text {
    padding: 6rem;
    width: 60%;
  }
}
.evi-home-cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 2rem 0;
}
.evi-home-cta-accent {
  color: #d4af37;
}
.evi-home-cta-desc {
  font-size: 1.25rem;
  color: #cbd5e1;
  font-weight: 300;
  line-height: 1.625;
  max-width: 36rem;
  margin: 0 0 3rem 0;
}
.evi-home-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  background: #fff;
  color: #02040a;
  font-weight: 700;
  width: fit-content;
  transition: background 0.3s;
}
.evi-home-cta-btn:hover {
  background: #e2e8f0;
}
.evi-home-cta-image-wrap {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .evi-home-cta-image-wrap { width: 40%; }
}
.evi-home-cta-image-wrap {
  position: relative;
}
.evi-home-cta-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: overlay;
  transition: transform 3s;
  filter: grayscale(100%);
}
.evi-home-cta-image-wrap:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
}
.evi-home-cta-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 41, 59, 0.8), transparent);
  pointer-events: none;
}

/* Ensure Tailwind-style utilities have fallbacks (legacy) */
.bg-brand-dark { background-color: #02040a; }
.bg-brand-primary { background-color: #0f172a; }
.bg-brand-secondary { background-color: #1e293b; }
.text-brand-accent { color: #d4af37; }
.border-brand-accent { border-color: #d4af37; }
.text-white { color: #fff; }
.text-slate-400 { color: #94a3b8; }
.text-slate-300 { color: #cbd5e1; }
.font-serif { font-family: "Playfair Display", Georgia, serif; }
.font-sans { font-family: Inter, sans-serif; }
/* Layout fallbacks */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-grow { flex-grow: 1; }
.min-h-screen { min-height: 100vh; }
.w-full { width: 100%; }
.max-w-7xl { max-width: 80rem; margin-left: auto; margin-right: auto; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.object-cover { object-fit: cover; }
.overflow-hidden { overflow: hidden; }

/* Image containers: ensure height so images display */
.relative.h-80,
div.h-80 {
  height: 20rem;
  min-height: 200px;
}
.min-h-\[400px\] {
  min-height: 400px;
}
.h-\[600px\] {
  height: 600px;
}
/* Images fill container and show properly */
img[src^="data:image/svg+xml"] {
  display: block;
  max-width: 100%;
  height: auto;
}
.relative.overflow-hidden.z-0 img,
.evi-tilt-card-inner img,
.evi-contact-form-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.grid { display: grid; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.font-light { font-weight: 300; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.overflow-x-hidden { overflow-x: hidden; }
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:block { display: block; }
}
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:w-2\/5 { width: 40%; }
  .lg\:w-3\/5 { width: 60%; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

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

.preserve-3d { transform-style: preserve-3d; }

.mask-text {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
}

/* Reveal elements: add .reveal and they get animated when in view */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* In-page backgrounds (no external image requests) */
.evi-map-pattern {
  background-color: #0f172a;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.evi-cubes-pattern {
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h16v16H0V0zm16 16h16v16H16V16z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
  background-size: 32px 32px;
}

/* ========== About page (matches original site, no Tailwind dependency) ========== */
.evi-about-page {
  background-color: #02040a;
  color: #e2e8f0;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Hero */
.evi-about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  overflow: hidden;
}
.evi-about-hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-color: transparent;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  background-size: 32px 32px;
}
.evi-about-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, #02040a);
}
.evi-about-hero-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .evi-about-hero-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .evi-about-hero-inner { padding-left: 2rem; padding-right: 2rem; }
}
.evi-about-hero-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #d4af37;
  margin-bottom: 1.5rem;
}
.evi-about-hero-title {
  font-size: clamp(3.75rem, 10vw, 9rem);
  line-height: 0.9;
  margin: 0 0 2rem 0;
  color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.evi-about-hero-word {
  display: block;
  overflow: hidden;
}
.evi-about-hero-accent {
  font-style: italic;
  color: #d4af37;
}
@keyframes reveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.evi-about-anim {
  opacity: 0;
  animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.evi-about-hero-tagline {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.625;
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .evi-about-hero-tagline { font-size: 1.5rem; }
}

/* Content area */
.evi-about-content {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem 8rem;
  position: relative;
}
@media (min-width: 640px) {
  .evi-about-content { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .evi-about-content { padding-left: 2rem; padding-right: 2rem; }
}

/* Scroll line */
.evi-about-scroll-line {
  display: none;
}
@media (min-width: 1024px) {
  .evi-about-scroll-line {
    display: block;
    position: absolute;
    left: 50%;
    top: 8rem;
    bottom: 8rem;
    width: 1px;
    background: rgba(255,255,255,0.05);
    transform: translateX(-50%);
  }
  .evi-about-scroll-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #d4af37;
    box-shadow: 0 0 15px rgba(212,175,55,0.8);
    transition: height 0.1s ease-out;
  }
  .evi-about-scroll-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212,175,55,1);
    transition: top 0.1s ease-out;
  }
}

/* Sections: two columns, image + text */
.evi-about-section {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 8rem 0;
  position: relative;
}
@media (min-width: 1024px) {
  .evi-about-section {
    flex-direction: row;
    gap: 5rem;
  }
  .evi-about-section-2 {
    flex-direction: row-reverse;
  }
  .evi-about-image-col {
    width: 50%;
    position: sticky;
    top: 8rem;
    height: calc(100vh - 16rem);
    display: flex;
    align-items: center;
  }
  .evi-about-text-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
    gap: 6rem;
  }
  .evi-about-section-1 .evi-about-text-col { padding-left: 5rem; }
  .evi-about-section-2 .evi-about-text-col { padding-right: 5rem; }
}

.evi-about-image-wrap {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.05);
}
.evi-about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 20s ease-linear, filter 0.5s;
  filter: grayscale(100%);
}
.evi-about-image-wrap:hover img {
  transform: scale(1.1);
  filter: grayscale(0);
}
.evi-about-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  mix-blend-mode: overlay;
}
.evi-about-overlay-gold {
  background: rgba(212, 175, 55, 0.1);
}
.evi-about-overlay-blue {
  background: rgba(59, 130, 246, 0.1);
}
.evi-about-image-caption {
  position: absolute;
  bottom: 2.5rem;
  z-index: 20;
  max-width: 20rem;
}
.evi-about-caption-left {
  left: 2.5rem;
}
.evi-about-caption-right {
  right: 2.5rem;
  text-align: right;
}
.evi-about-image-num {
  position: absolute;
  font-size: 6rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
.evi-about-num-gold {
  color: rgba(212, 175, 55, 0.2);
  top: -4rem;
  left: -1.5rem;
}
.evi-about-num-blue {
  color: rgba(59, 130, 246, 0.2);
  top: -4rem;
  right: -1.5rem;
}
.evi-about-image-caption p {
  position: relative;
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.875rem;
  font-style: italic;
  color: #fff;
}

/* Text column */
.evi-about-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.evi-about-reveal.active,
.evi-about-reveal.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.evi-about-heading-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.evi-about-icon-wrap {
  padding: 1rem;
  border-radius: 9999px;
  border: 1px solid;
}
.evi-about-icon-gold {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.2);
}
.evi-about-icon-blue {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}
.evi-about-icon {
  width: 2rem;
  height: 2rem;
}
.evi-about-icon-gold .evi-about-icon { color: #d4af37; }
.evi-about-icon-blue .evi-about-icon { color: #60a5fa; }
.evi-about-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.evi-about-h3 {
  font-size: 1.875rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
}
.evi-about-prose {
  margin-bottom: 0;
}
.evi-about-prose p {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.75;
  margin: 0 0 1rem 0;
}
.evi-about-prose strong { color: #fff; }
.evi-about-prose strong.text-brand-accent,
.evi-about-prose strong.evi-about-accent { color: #d4af37; }
.evi-about-lead {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.625;
  margin: 0;
}
.evi-about-lead-mb {
  margin-bottom: 3rem;
}
.evi-about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.evi-about-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.evi-about-list li:last-child { margin-bottom: 0; }
.evi-about-check {
  width: 2rem;
  height: 2rem;
  color: #d4af37;
  margin-right: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.evi-about-list-title {
  display: block;
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.evi-about-list-desc {
  font-size: 1.125rem;
  color: #64748b;
  font-weight: 300;
}

/* Vision block */
.evi-about-vision {
  position: relative;
  border-radius: 3rem;
  padding: 4rem;
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  margin-top: 5rem;
}
@media (min-width: 768px) {
  .evi-about-vision { padding: 8rem; }
}
.evi-about-vision-bg {
  position: absolute;
  inset: 0;
  background: rgba(30, 41, 59, 0.2);
  backdrop-filter: blur(4px);
}
.evi-about-vision-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
}
.evi-about-vision-inner {
  position: relative;
  z-index: 10;
  text-align: center;
}
.evi-about-vision-label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #d4af37;
  margin: 0 0 2rem 0;
}
.evi-about-vision-quote {
  font-size: clamp(1.875rem, 4vw, 3rem);
  color: #fff;
  font-family: "Playfair Display", serif;
  line-height: 1.25;
  max-width: 64rem;
  margin: 0 auto;
}

/* ========== Contact page (matches original site, no Tailwind dependency) ========== */
.evi-contact-page {
  min-height: 100vh;
  background-color: #02040a;
  color: #e2e8f0;
  position: relative;
  overflow: hidden;
}

.evi-contact-bg-shape {
  pointer-events: none;
}
.evi-contact-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 66.666667%;
  height: 100%;
  background: linear-gradient(to left, rgba(15, 23, 42, 0.4), transparent);
  transform: skewX(12deg) translateX(8rem);
  z-index: 0;
}
@keyframes blob {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.8; }
}
.evi-contact-bg-blob {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 500px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  animation: blob 7s infinite;
}

.evi-contact-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1rem;
  position: relative;
  z-index: 10;
}
@media (min-width: 640px) {
  .evi-contact-inner { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .evi-contact-inner { padding-left: 2rem; padding-right: 2rem; }
}

@keyframes evi-contact-fade-in-up {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.evi-contact-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: evi-contact-fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.evi-contact-card-wrap {
  height: fit-content;
  animation: evi-contact-fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  opacity: 0;
}
.evi-contact-form-wrap {
  animation: evi-contact-fade-in-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  opacity: 0;
}
.evi-contact-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
  display: block;
}
.evi-contact-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  font-weight: 300;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.625;
}

/* Grid: 1 col mobile, 3 col desktop (1 card + 2 form) */
.evi-contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .evi-contact-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .evi-contact-card-wrap {
    grid-column: span 1;
    position: sticky;
    top: 8rem;
  }
  .evi-contact-form-wrap {
    grid-column: span 2;
  }
}

/* Contact info card (matches original: glass, hover gradient, rounded-3xl, p-8) */
.evi-contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  overflow: hidden;
}
.evi-contact-card-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.evi-contact-card:hover .evi-contact-card-hover {
  opacity: 1;
}
.evi-contact-card-title {
  font-size: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
  position: relative;
  z-index: 10;
}
.evi-contact-card-desc {
  color: #94a3b8;
  margin: 0 0 2.5rem 0;
  line-height: 1.625;
  position: relative;
  z-index: 10;
}

.evi-contact-list {
  position: relative;
  z-index: 10;
}
.evi-contact-list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.evi-contact-list-item:last-child {
  margin-bottom: 0;
}
.evi-contact-list-icon {
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  transition: background 0.3s;
  flex-shrink: 0;
}
.evi-contact-list-item:hover .evi-contact-list-icon {
  background: #d4af37;
}
.evi-contact-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #d4af37;
  transition: color 0.3s;
}
.evi-contact-list-item:hover .evi-contact-icon {
  color: #02040a;
}
.evi-contact-list-body {
  margin-left: 1rem;
}
.evi-contact-list-label {
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  margin: 0 0 0.25rem 0;
}
.evi-contact-list-value {
  color: #cbd5e1;
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.5;
}

.evi-contact-hours {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(2, 4, 10, 0.5);
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 10;
}
.evi-contact-hours-title {
  color: #d4af37;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  margin: 0 0 0.5rem 0;
}
.evi-contact-hours-text {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
}

/* Form outer (holographic border + shimmer) */
.evi-contact-form-outer {
  background: rgba(30, 41, 59, 0.3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 4px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.evi-contact-form-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.evi-contact-form-inner {
  background: rgba(2, 4, 10, 0.8);
  border-radius: 1.3rem;
  padding: 2rem;
  position: relative;
  height: 100%;
}
@media (min-width: 1024px) {
  .evi-contact-form-inner {
    padding: 3rem;
  }
}

#evi-contact-form-wrap.hidden {
  display: none !important;
}

.evi-contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.evi-contact-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .evi-contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.evi-contact-field {
  position: relative;
}
.evi-contact-field-select .evi-contact-label-inline {
  position: absolute;
  top: -0.75rem;
  left: 1rem;
  font-size: 0.75rem;
  color: #d4af37;
  background: #02040a;
  padding: 0 0.5rem;
  z-index: 5;
}
.evi-contact-field input,
.evi-contact-field select,
.evi-contact-field textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}
.evi-contact-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}
.evi-contact-field textarea {
  resize: none;
  min-height: 150px;
}
.evi-contact-field input:focus,
.evi-contact-field select:focus,
.evi-contact-field textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.5);
}
.evi-contact-field .evi-floating-label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: #64748b;
  transition: all 0.3s;
  pointer-events: none;
}
.evi-contact-submit-wrap {
  padding-top: 1.5rem;
}
.evi-contact-submit {
  width: 100%;
  background: #d4af37;
  color: #02040a;
  font-weight: 700;
  border: none;
  border-radius: 0.75rem;
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  font-family: inherit;
}
.evi-contact-submit:hover {
  background: #f3e5ab;
  color: #02040a;
}
.evi-contact-submit-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* Success state */
.evi-contact-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  min-height: 500px;
}
.evi-contact-success:not(.hidden) {
  display: flex;
}
.evi-contact-success-icon-wrap {
  background: rgba(212, 175, 55, 0.2);
  padding: 2rem;
  border-radius: 50%;
  margin-bottom: 2rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}
.evi-contact-success-icon {
  width: 4rem;
  height: 4rem;
  color: #d4af37;
}
.evi-contact-success-title {
  font-size: 2.25rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.5rem 0;
}
.evi-contact-success-text {
  color: #94a3b8;
  max-width: 28rem;
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.6;
}

.evi-label-active {
  top: -0.75rem !important;
  font-size: 0.75rem !important;
  color: #d4af37 !important;
  background: #02040a !important;
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
@keyframes glitch1 {
  0% { clip-path: inset(40% 0 61% 0); }
  20% { clip-path: inset(92% 0 1% 0); }
  40% { clip-path: inset(43% 0 1% 0); }
  60% { clip-path: inset(25% 0 58% 0); }
  80% { clip-path: inset(54% 0 7% 0); }
  100% { clip-path: inset(58% 0 43% 0); }
}
@keyframes glitch2 {
  0% { clip-path: inset(25% 0 58% 0); }
  20% { clip-path: inset(54% 0 7% 0); }
  40% { clip-path: inset(58% 0 43% 0); }
  60% { clip-path: inset(40% 0 61% 0); }
  80% { clip-path: inset(92% 0 1% 0); }
  100% { clip-path: inset(43% 0 1% 0); }
}
.evi-glitch:hover {
  animation: glitch1 2.5s infinite linear alternate-reverse;
}

/* ========== Default page & blog (no Tailwind) ========== */
.evi-page {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.evi-page-article {
  max-width: none;
}
.evi-page-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2rem 0;
}
.evi-page-content {
  color: #cbd5e1;
  font-weight: 300;
  line-height: 1.75;
}
.evi-page-content p {
  margin: 0 0 1rem 0;
}
.evi-page-content a {
  color: #d4af37;
}
.evi-page-content a:hover {
  color: #f3e5ab;
}

.evi-blog {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.evi-blog-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.evi-blog-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.3);
}
.evi-blog-card-title {
  font-size: 1.875rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.evi-blog-card-title a {
  color: #fff;
}
.evi-blog-card-title a:hover {
  color: #d4af37;
}
.evi-blog-card-excerpt {
  color: #94a3b8;
  font-weight: 300;
  line-height: 1.625;
}
.evi-blog-card-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #d4af37;
}
.evi-blog-card-link:hover {
  text-decoration: underline;
}
.evi-blog-empty {
  color: #94a3b8;
  font-size: 1.125rem;
}

/* Custom cursor: show by default, hide only on small/touch screens */
.evi-custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2147483647;
  display: block;
  visibility: visible;
  will-change: transform;
}
.evi-cursor-ring {
  width: 2rem;
  height: 2rem;
  margin-left: -0.5rem;
  margin-top: -0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: transparent;
  transition: transform 0.15s ease-out, border-color 0.2s, background 0.2s;
}
.evi-cursor-ring.evi-cursor-hover {
  transform: scale(2.5);
  border-color: rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.08);
}
.evi-cursor-dot {
  width: 6px;
  height: 6px;
  margin-left: -3px;
  margin-top: -3px;
  background: #fff;
  border-radius: 50%;
  transition: background 0.2s;
}
.evi-cursor-dot.evi-cursor-hover {
  background: #d4af37;
}

@media (max-width: 767px) {
  html, a, button, input, select, textarea { cursor: auto; }
  .evi-custom-cursor { display: none !important; }
}
