:root {
  --primary: #C84B31;
  --secondary: #E2B255;
  --bg: #FAFAFA;
  --text: #333333;
  --text-light: #666666;
  --white: #FFFFFF;
  --radius: 8px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
a { color: var(--primary); text-decoration: none; }

/* Navigation */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 100; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 1rem 5%; max-width: 1200px; margin: 0 auto; }
nav ul { display: flex; list-style: none; gap: 2rem; flex-wrap: wrap; }
nav a { font-weight: 600; color: var(--text); transition: color 0.3s; }
nav a:hover { color: var(--primary); }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); }

/* Hero */
.hero { position: relative; height: 50vh; min-height: 350px; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); background-size: cover; background-position: center; }
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.hero-content { position: relative; z-index: 1; max-width: 800px; padding: 0 2rem; }
.hero h1 { font-size: 3rem; margin-bottom: 1rem; line-height: 1.2; }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; }
.btn { display: inline-block; padding: 0.8rem 2rem; background: var(--primary); color: var(--white); border-radius: var(--radius); font-weight: 600; transition: transform 0.3s, background 0.3s; }
.btn:hover { transform: translateY(-2px); background: #a63d27; color: var(--white); }

/* Sections */
main { padding: 4rem 5%; max-width: 1200px; margin: 0 auto; }
section { margin-bottom: 4rem; }
h2 { font-size: 2.2rem; margin-bottom: 1.5rem; color: var(--primary); text-align: center; }

/* Grid */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: transform 0.3s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-content { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.card-content h3 { margin-bottom: 0.5rem; color: var(--text); font-size: 1.4rem; }
.card-content p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; flex-grow: 1; }
.badge { align-self: flex-start; display: inline-block; background: var(--secondary); color: var(--text); padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; }

/* Footer */
footer { background: #1a1a1a; color: var(--white); text-align: center; padding: 3rem 5%; margin-top: auto; }
footer h2 { color: var(--white); font-size: 1.5rem; margin-bottom: 0.5rem; }

/* Animations */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  nav { flex-direction: column; gap: 1rem; }
  .hero h1 { font-size: 2rem; }
}