:root { --brand: #eba32c; }
html { scroll-behavior: smooth; }
html, body { height: 100%; }
body { scroll-padding-top: 8rem; }
img { image-rendering: auto; }
::selection { background: var(--brand); color: #fff; }

#site-header {
  top: 44px;
  margin-top: 0;
}

#nav-shell { will-change: background, border-color, color, box-shadow; transition: all 0.15s ease-out; }
.nav-solid #nav-shell {
  background: rgba(255,255,255,0.92);
  color: #0f172a;
  border-color: rgba(15,23,42,0.08);
  box-shadow: 0 8px 30px -10px rgba(15,23,42,0.25);
}

#logo-text { transition: color .15s ease-out; will-change: color; }
.nav-solid #logo-text {
  color: #D97706;
}

.hero-grid {
  pointer-events: none;
  background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: 0 0;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,.7), rgba(0,0,0,0));
}

.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.gradient-text {
  background: linear-gradient(135deg, #D97706 0%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-shine {
  position: relative;
  overflow: hidden;
}

.card-shine::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s;
}

.card-shine:hover::before {
  transform: rotate(45deg) translateX(100%);
}

.about-image-container {
  height: 650px;
}

.hero-height {
  min-height: 80vh;
}

@media (min-width: 768px) {
  .hero-height {
    min-height: 75vh;
  }
}

@media (min-width: 1024px) {
  .hero-height {
    min-height: 80vh;
  }
}

#campaign-bar {
  will-change: transform;
  transition: transform 0.3s ease-out;
}

#campaign-bar.hidden-bar {
  transform: translateY(-100%);
}

.service-card img {
  transition: transform 0.5s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.portfolio-card img {
  transition: transform 0.5s;
}

.portfolio-card:hover img {
  transform: scale(1.04);
}

.submit-button:hover {
  transform: scale(1.02);
}

.hero-accent-bar {
  height: 120%;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

svg {
  cursor: pointer;
  transition: transform 0.2s ease;
}

svg:hover {
  transform: scale(1.05);
}

.border-3 {
  border-width: 3px;
}
