*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root { --gold: #C49A2B; --gold-light: #D4AA3B; --dark: #0A0A08; --dark-2: #0D0C0A; --dark-3: #111009; --text: #E8DCC8; --text-muted: #C8B89A; --border: rgba(139,105,20,0.3); }
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text); font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(10,10,8,0.95); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; height: 64px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-logo-text p:first-child { font-size: 11px; font-weight: 700; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; }
.nav-logo-text p:last-child { font-size: 9px; letter-spacing: 0.35em; color: rgba(139,105,20,0.7); text-transform: uppercase; margin-top: 2px; }
.nav-links { display: none; gap: 2rem; }
.nav-links a { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: rgba(200,184,154,0.8); text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta { display: none; background: var(--gold); color: #0A0A08; padding: 10px 20px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; transition: background 0.2s; }
.nav-cta:hover { background: var(--gold-light); }
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); transition: all 0.3s; }
.mobile-menu { display: none; background: var(--dark); border-top: 1px solid var(--border); padding: 1rem 1.5rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 12px 0; font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: rgba(200,184,154,0.8); text-transform: uppercase; }
.mobile-cta { display: block; margin-top: 12px; background: var(--gold); color: #0A0A08; padding: 14px; text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; }

@media(min-width:1024px) { .nav-links { display: flex; } .nav-cta { display: block; } .hamburger { display: none; } }

/* BUTTONS */
.btn-gold { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #0A0A08; padding: 16px 32px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; transition: background 0.2s; border: none; cursor: pointer; }
.btn-gold:hover { background: var(--gold-light); }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--gold); color: var(--gold); padding: 16px 32px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; transition: all 0.2s; }
.btn-outline:hover { background: rgba(196,154,43,0.1); }

/* SECTIONS */
.section { padding: 4rem 1.5rem; }
.section-dark { background: var(--dark-2); }
.container { max-width: 1280px; margin: 0 auto; }
.eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 1rem; }
.divider { width: 3rem; height: 1px; background: var(--gold); margin: 1rem 0; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.05; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }
.text-muted { color: rgba(200,184,154,0.7); line-height: 1.7; }
.text-gold { color: var(--gold); }

/* HERO */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, #0A0A08 40%, rgba(10,10,8,0.7) 70%, rgba(10,10,8,0.2)); }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, #0A0A08 0%, transparent 40%); z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 6rem 1.5rem 4rem; }
.hero-inner { max-width: 680px; display: grid; gap: 1.5rem; }
.hero h1 .accent { color: var(--gold); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 6px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* STATS */
.stats { border-top: 1px solid rgba(139,105,20,0.2); border-bottom: 1px solid rgba(139,105,20,0.2); padding: 2.5rem 1.5rem; }
.stats-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.stat-val { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 11px; color: rgba(200,184,154,0.6); margin-top: 4px; }
@media(min-width:768px){ .stats-grid { grid-template-columns: repeat(4,1fr); } }

/* CARDS */
.card { background: var(--dark-3); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; transition: border-color 0.2s; }
.card:hover { border-color: rgba(196,154,43,0.5); }
.grid-3 { display: grid; gap: 1.5rem; }
.grid-2 { display: grid; gap: 1.5rem; }
.grid-4 { display: grid; gap: 1rem; }
@media(min-width:768px){ .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media(min-width:1024px){ .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* GALLERY */
.gallery-item { border-radius: 8px; overflow: hidden; border: 1px solid rgba(139,105,20,0.2); background: var(--dark-3); }
.gallery-item img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { padding: 12px 16px; border-top: 1px solid rgba(139,105,20,0.2); }
.gallery-caption span:first-child { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-right: 8px; }
.gallery-caption span:last-child { font-size: 13px; color: rgba(200,184,154,0.7); }

/* FILTER */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { padding: 8px 20px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; border-radius: 2px; cursor: pointer; border: 1px solid rgba(139,105,20,0.4); background: none; color: rgba(200,184,154,0.7); transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--gold); color: #0A0A08; border-color: var(--gold); }

/* FORM */
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
@media(min-width:768px){ .form-row { grid-template-columns: 1fr 1fr; } }
label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; display: block; margin-bottom: 8px; }
input, select, textarea { width: 100%; background: var(--dark-2); border: 1px solid rgba(139,105,20,0.4); border-radius: 4px; padding: 12px 16px; color: var(--text); font-size: 15px; outline: none; transition: border-color 0.2s; font-family: inherit; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: rgba(200,184,154,0.3); }
select option { background: var(--dark-2); }
textarea { resize: none; }
.form-submit { display: flex; flex-direction: column; gap: 12px; }
@media(min-width:768px){ .form-submit { flex-direction: row; align-items: center; justify-content: space-between; } }
.form-note { font-size: 11px; color: rgba(200,184,154,0.5); }
.form-note a { color: var(--gold); }
.success-box { background: var(--dark-3); border: 1px solid rgba(196,154,43,0.5); border-radius: 8px; padding: 3rem; text-align: center; display: grid; gap: 1rem; }
.success-icon { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; margin: 0 auto; }

/* FOOTER */
footer { background: #060604; border-top: 1px solid var(--border); padding: 3.5rem 1.5rem; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; gap: 2.5rem; }
@media(min-width:768px){ .footer-grid { grid-template-columns: repeat(3,1fr); } }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(200,184,154,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-label { font-size: 10px; font-weight: 700; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; margin-bottom: 12px; }
.footer-bottom { max-width: 1280px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid rgba(139,105,20,0.2); display: flex; flex-direction: column; gap: 8px; }
@media(min-width:768px){ .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 11px; color: rgba(200,184,154,0.4); }

/* PAGE HEADER */
.page-header { padding: 8rem 1.5rem 4rem; background: var(--dark-2); }

/* TWO COL */
.two-col { display: grid; gap: 2.5rem; }
@media(min-width:1024px){ .two-col { grid-template-columns: 1fr 1fr; align-items: center; } }
.two-col img { border-radius: 8px; border: 1px solid var(--border); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* PRICING */
.pricing-highlight { border-color: rgba(196,154,43,0.5); }
.price-amount { font-size: 2.5rem; font-weight: 700; }
.price-note { font-size: 13px; color: rgba(200,184,154,0.6); margin-top: 4px; }
.price-features { display: grid; gap: 10px; margin: 1.5rem 0; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(200,184,154,0.7); list-style: none; }
.price-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 6px; }
.price-info { background: var(--dark-2); border: 1px solid var(--border); border-radius: 4px; padding: 1rem; }
.price-info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase; margin-bottom: 4px; }
.price-info p { font-size: 13px; color: rgba(200,184,154,0.6); }

/* ABOUT VALUES */
.value-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: 8px; padding: 1.75rem; }
.cta-banner { text-align: center; padding: 4rem 1.5rem; }
.cta-banner .container { display: grid; gap: 1.25rem; max-width: 640px; }

/* SERVICES */
.service-section { padding: 3.5rem 1.5rem; }
.service-num { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.service-num::before { content: ''; width: 2rem; height: 1px; background: var(--gold); }
.service-tag { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.service-highlight { background: var(--dark-3); border: 1px solid rgba(196,154,43,0.3); border-radius: 8px; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
@media(min-width:768px){ .service-highlight { flex-direction: row; align-items: center; justify-content: space-between; } }
.ul-list { display: grid; gap: 10px; list-style: none; margin: 1.5rem 0; }
.ul-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: rgba(200,184,154,0.7); }
.ul-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 8px; }
.handyman-rate { background: var(--dark-3); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; display: grid; gap: 4px; margin-top: 2rem; }

/* ACTIVE NAV */
.page-home .nav-home, .page-about .nav-about, .page-services .nav-services, .page-pricing .nav-pricing, .page-gallery .nav-gallery { color: var(--gold) !important; }
