
:root {
  --brand-gold: #D4AF37;
  --brand-gold-dark: #B8941F;
  --brand-gold-light: #F4E4A6;
  --brand-dark: #0F0F0F;
  --brand-dark-soft: #1A1A1A;
}

html { scroll-behavior: smooth; }
body { text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
button, input, textarea, select { font: inherit; }
input::placeholder, textarea::placeholder { color: #94a3b8; }

img[data-protect-media="true"] {
  -webkit-user-drag: none;
  user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
}

.copy-guard,
.copy-guard * {
  user-select: none;
  -webkit-user-select: none;
}

.media-guard {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: block;
}

.media-guard::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(15,15,15,0.12)),
    repeating-linear-gradient(135deg, rgba(255,255,255,0.07) 0 2px, transparent 2px 14px);
  opacity: 0.26;
}

.media-guard > img[data-protect-media="true"] {
  position: relative;
  z-index: 1;
}

.media-guard > :not(img[data-protect-media="true"]) {
  position: relative;
  z-index: 3;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 0.45s ease, box-shadow 0.45s ease, background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--brand-gold);
  color: #ffffff;
  border: 2px solid var(--brand-gold);
  box-shadow: 0 16px 35px rgba(212, 175, 55, 0.22);
}

.btn-primary:hover {
  background: var(--brand-gold-dark);
  border-color: var(--brand-gold-dark);
  box-shadow: 0 18px 38px rgba(212, 175, 55, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--brand-gold);
  border: 2px solid var(--brand-gold);
}

.btn-outline:hover {
  background: var(--brand-gold);
  color: #ffffff;
}

.section-padding {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 1s ease, transform 1s ease;
}

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

.card-hover {
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.card-hover:hover {
  transform: translateY(-0.75rem);
  box-shadow: 0 28px 60px rgba(15, 15, 15, 0.12);
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hide-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scroll::-webkit-scrollbar {
  display: none;
}

.mask-bottom {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 100%);
}

.soft-elevated {
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
}
