/* ==================================================
   PROW CONSTRUCTIONS INC. — Base: Variables, Reset, Utilities
   ================================================== */

/* ---- Custom Properties ---- */
:root {
  --gold: #D4A435;
  --gold-light: #F0C050;
  --gold-dark: #A8801A;
  --bg-dark: #0D0F14;
  --bg-card: #151820;
  --bg-section: #111318;
  --bg-alt: #0A0C10;
  --text-primary: #F0F2F8;
  --text-secondary: #9AA0B8;
  --text-muted: #5C637A;
  --border: rgba(212, 164, 53, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --shadow-gold: 0 0 40px rgba(212, 164, 53, 0.18);
  --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ---- Utility ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.gold-text {
  color: var(--gold);
}

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--transition), transform 0.7s var(--transition);
}

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