:root {
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  background: #f7f4ef;
  color: #2a2e3d;
}
.font-heading { font-family: var(--font-heading); }
.honeypot-field {
  position: absolute; left: -9999px; top: -9999px;
  opacity: 0; height: 0; width: 0; pointer-events: none;
}
.hero-slide { opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
#mobile-menu {
  opacity: 0; pointer-events: none; transition: opacity .4s ease;
}
#mobile-menu.open { opacity: 1; pointer-events: auto; }
.nav-underline { width: 0; height: 1px; background: #c9a227; transition: width .3s; }
.nav-link:hover .nav-underline, .nav-link.active .nav-underline { width: 100%; }
.nav-link.active { color: #c9a227; }
