/* Virel Digital Agency — shared styles */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: #1a1410; }
a { text-decoration: none; color: inherit; }

.gold-grad {
  background: linear-gradient(135deg, #e9a02d 0%, #d6942a 46%, #b07925 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d6942a;
}

.navlink { position: relative; transition: color .25s ease; }
.navlink:hover { color: #f3ead9; }

.btn-gold { transition: transform .2s ease, box-shadow .2s ease; display: inline-block; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(214,148,42,.28); }

.lift { transition: transform .3s ease, border-color .3s ease; }
.lift:hover { transform: translateY(-4px); border-color: rgba(214,148,42,.5) !important; }

.imgzoom { overflow: hidden; }
.imgzoom img { transition: transform .9s cubic-bezier(.2,.7,.2,1); }
.imgzoom:hover img { transform: scale(1.04); }

/* Form fields */
.field {
  width: 100%;
  background: #1a1410;
  border: 1px solid rgba(243,234,217,0.16);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 15px;
  color: #f3ead9;
  font-family: 'Hanken Grotesk', sans-serif;
  outline: none;
  transition: border-color .2s;
  -webkit-appearance: none;
  appearance: none;
}
.field:focus { border-color: rgba(214,148,42,0.5); }
.field::placeholder { color: #6f614b; }
select.field { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236f614b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
option { background: #1a1410; color: #f3ead9; }

/* Mobile nav */
@media (max-width: 680px) {
  .nav-links { display: none !important; }
  .nav-cta-desktop { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
}
