:root {
    --bg: #111111;
    --bg-soft: #181818;
    --panel: rgba(255, 255, 255, 0.06);
    --gold: #d4af37;
    --gold-soft: #f0d98b;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.72);
    --line: rgba(255, 255, 255, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 32%),
        linear-gradient(180deg, #0a0a0a 0%, #111111 45%, #151515 100%);
}

.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.55;
}

.hero-section::before {
    width: 18rem;
    height: 18rem;
    background: rgba(212, 175, 55, 0.25);
    top: 7rem;
    right: -4rem;
}

.hero-section::after {
    width: 12rem;
    height: 12rem;
    background: rgba(36, 138, 95, 0.28);
    bottom: 5rem;
    left: -3rem;
}

.navbar {
    position: relative;
    z-index: 2;
}

.brand-logo {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #fff;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text strong {
    font-size: 1rem;
    letter-spacing: 0.14em;
}

.brand-text small {
    color: var(--muted);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 5rem 0 6rem;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--gold-soft);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

h1 {
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.98;
    margin-bottom: 1.4rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.hero-copy,
.service-card p,
.contact-panel p,
.site-footer p,
.footer-meta span,
.brand-text small {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #f0d98b);
    color: #111111;
    border: none;
    font-weight: 800;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
}

.btn-outline-light {
    border-radius: 999px;
    padding: 0.95rem 1.4rem;
}

.hero-card,
.service-card,
.contact-panel {
    background: var(--panel);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.hero-card {
    padding: 2rem;
}

.hero-card-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--gold-soft);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.highlight-list i,
.contact-list i {
    color: var(--gold);
}

.services-section,
.contact-section {
    padding: 6rem 0;
}

.section-heading {
    max-width: 46rem;
    margin-bottom: 2.5rem;
}

.service-card {
    padding: 2rem;
    transition: transform 180ms ease, border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
}

.service-icon {
    width: 3.4rem;
    height: 3.4rem;
    display: inline-grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.32));
    color: var(--gold-soft);
    font-size: 1.25rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-link,
.site-footer a {
    color: var(--gold-soft);
    text-decoration: none;
    font-weight: 700;
}

.service-link:hover,
.site-footer a:hover {
    color: #ffffff;
}

.contact-panel {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2rem;
}

.contact-list p {
    margin-bottom: 0.9rem;
}

.site-footer {
    border-top: 1px solid var(--line);
    padding: 1.5rem 0 2rem;
}

.footer-wrap,
.footer-meta {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding-top: 3rem;
    }

    .contact-panel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .brand-text small {
        font-size: 0.8rem;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    h1 {
        font-size: 2.4rem;
    }

    .hero-card,
    .service-card,
    .contact-panel {
        border-radius: 22px;
    }
}

.site-nav { background: rgba(10, 10, 10, 0.92); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; backdrop-filter: blur(16px); }
.site-nav .navbar-brand span { display: grid; line-height: 1.1; }.site-nav .navbar-brand small { color: var(--muted); font-size: .65rem; }.site-nav a { color: #fff; text-decoration: none; font-weight: 700; padding: .5rem .7rem; }.site-nav a:hover { color: var(--gold-soft); }.nav-cta { background: var(--gold); color: #111 !important; border-radius: 999px; }
.page-section { min-height: 72vh; padding: 5rem 0; }.narrow { max-width: 860px; }.form-card { padding: 2rem; margin-top: 2rem; background: var(--panel); border: 1px solid var(--line); border-radius: 24px; }.form-card label { display: block; margin: 0 0 .45rem; color: var(--gold-soft); font-weight: 700; }.form-card input, .form-card select, .form-card textarea { width: 100%; background: #101010; border: 1px solid #444; border-radius: 10px; color: #fff; padding: .8rem; }.form-card textarea { resize: vertical; }.form-card input[type=checkbox] { width: auto; accent-color: var(--gold); }.form-card .btn { margin-top: 1.5rem; }.estimate { margin-top: 1.5rem; margin-bottom: .4rem; padding: 1rem; border-left: 3px solid var(--gold); background: rgba(212,175,55,.1); border-radius: 8px; line-height: 1.7; }.admin-links { display: flex; flex-wrap: wrap; gap: .7rem; }.admin-links a, .back-link { color: var(--gold-soft); text-decoration: none; font-weight: 700; }.admin-links a { padding: .6rem .9rem; border: 1px solid var(--line); border-radius: 999px; }.stat-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: 20px; background: var(--panel); }.stat-card span { display: block; color: var(--muted); text-transform: capitalize; }.stat-card strong { display: block; margin-top: .5rem; font: 2.5rem "Playfair Display", serif; color: var(--gold-soft); }.table { font-size: .85rem; }.table td, .table th { vertical-align: middle; white-space: nowrap; }.table td { max-width: 280px; overflow: hidden; text-overflow: ellipsis; }.alert { border: 0; }
