:root {
  --primary: #7d6315;
  --primary-dark: #5e4a08;
  --secondary: #2c2c2c;
  --bg-dark: #1a1a1a;
  --bg-light: #f8f5f0;
  --text-light: #ffffff;
  --text-dark: #2c2c2c;
  --accent: #d4af37;
  --font-heading: 'Georgia', serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
  --shadow: 0 4px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.15);
  --radius: 12px;
}
*, *::before, *::after { box-sizing: border-box; }
body { 
  font-family: var(--font-body); 
  color: var(--text-dark); 
  background: var(--bg-light); 
  line-height: 1.7; 
  overflow-x: hidden;
  width: 100%;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; }
.hero-section, .dark-section { 
  background-size: cover; 
  background-position: center; 
  position: relative; 
  color: var(--text-light); 
  background-color: #1a1a1a;
}
.hero-section::before, .dark-section::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.65); z-index: 1; }
.hero-section > *, .dark-section > * { position: relative; z-index: 2; }
.bg-brand { background: var(--primary); }
.bg-dark-custom { background: var(--bg-dark); }
.bg-light-custom { background: var(--bg-light); }
.text-brand { color: var(--primary); }
/* Fix contrast for text-brand on dark backgrounds */
.bg-dark .text-brand,
.dark-section .text-brand,
.card.bg-dark .text-brand { color: #d4af37; }
.btn-brand { 
  background: var(--primary); 
  border: none; 
  color: #fff; 
  padding: 12px 32px; 
  border-radius: 50px; 
  font-weight: 600; 
  transition: all 0.3s; 
}
.btn-brand:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(125,99,21,0.3); }
.btn-outline-light-custom { 
  border: 2px solid var(--text-light); 
  color: var(--text-light); 
  border-radius: 50px; 
  padding: 10px 28px; 
  font-weight: 600; 
  transition: all 0.3s; 
}
.btn-outline-light-custom:hover { background: var(--text-light); color: var(--text-dark); }
.card-hover { transition: all 0.4s ease; border: none; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card-hover:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card .card-img-top { height: 240px; object-fit: cover; }
.overlay-gradient { position: relative; }
.overlay-gradient::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 60%; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); }
.badge-premium { background: var(--accent); color: #1a1a1a; font-weight: 600; padding: 6px 14px; border-radius: 30px; }
.price-tag { font-size: 2rem; font-weight: 700; color: var(--primary); }
.testimonial-card { background: #fff; padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); border-left: 4px solid var(--primary); }
.gmap-embed { border: none; width: 100%; height: 400px; border-radius: var(--radius); }
.footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer a:hover { color: var(--primary); }
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--bg-dark); color: var(--text-light); padding: 1rem 2rem; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.3); }
.cookie-banner .btn { margin-left: 1rem; }
.cookie-banner a { color: #d4af37; text-decoration: underline; }
.navbar-custom { padding: 1rem 0; background: rgba(26,26,26,0.95) !important; backdrop-filter: blur(8px); }
.navbar-custom .nav-link { color: rgba(255,255,255,0.8) !important; font-weight: 500; transition: color 0.3s; }
.navbar-custom .nav-link:hover { color: var(--primary) !important; }
.navbar-custom .nav-link.dropdown-toggle { color: rgba(255,255,255,0.8) !important; }
.section-title { font-size: 2.5rem; margin-bottom: 1rem; }
.section-subtitle { font-size: 1.1rem; color: #495057; max-width: 700px; margin: 0 auto 2rem; }
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  .hero-section { min-height: 70vh; }
  .cookie-banner .d-flex { flex-direction: column; align-items: stretch; }
  .cookie-banner .btn { margin: 0.5rem 0 0; }
}
/* Mobile header overlap fix */
@media (max-width: 576px) {
  .hero-section { padding-top: 80px; }
}
.text-white-50 { color: rgba(255,255,255,0.75) !important; }
