:root {
    --bg: #0a0a0b;
    --bg-elevated: #141416;
    --bg-card: #1a1a1e;
    --bg-card-hover: #222228;
    --gold: #d4a82a;
    --gold-light: #e8c04a;
    --gold-dark: #a8841f;
    --text: #f4f4f5;
    --text-muted: #9ca3af;
    --border: rgba(212, 168, 42, 0.2);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    --radius: 12px;
    --radius-lg: 20px;
    --header-h: 88px;
    --font-sans: "DM Sans", system-ui, sans-serif;
    --font-serif: "Libre Baskerville", Georgia, serif;
    --container: min(1200px, calc(100% - 3rem));
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--gold);
}

ul {
    list-style: none;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1rem;
    background: var(--gold);
    color: var(--bg);
    border-radius: var(--radius);
}

.skip-link:focus {
    top: 1rem;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg);
    box-shadow: 0 4px 20px rgba(212, 168, 42, 0.35);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212, 168, 42, 0.45);
    color: var(--bg);
}

.btn--outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.0625rem;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    overflow: visible;
    background: rgba(10, 10, 11, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: var(--shadow);
}

.header-top {
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.8125rem;
}

.header-top__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
    flex-wrap: wrap;
}

.header-top__item {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-muted);
}

.header-top__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gold-light);
    font-weight: 600;
}

.header-top__phone:hover {
    color: var(--gold);
}

.header-top__tagline {
    color: var(--gold-light);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.header-main {
    overflow: visible;
}

.header-main__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
    min-height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
}

.brand:hover {
    color: var(--text);
}

.brand__mark {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 2px 0;
}

.brand__mark img {
    display: block;
    width: auto;
    height: auto;
    max-height: 56px;
    max-width: none;
    object-fit: contain;
    object-position: center;
}

.brand__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.125rem;
    line-height: 1.35;
}

.brand__text strong {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    line-height: 1.4;
    letter-spacing: 0.06em;
}

.brand__text span {
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 8px;
    transition: color var(--transition), background var(--transition);
}

.nav__link:hover,
.nav__link.is-active {
    color: var(--gold-light);
    background: rgba(212, 168, 42, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 1px;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

main {
    padding-top: calc(var(--header-h) + 36px);
}

.hero-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    background: var(--bg);
}

.hero-slider__track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    background: var(--bg);
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.hero-slider__overlay {
    display: none;
}

.hero-slider__controls {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-slider__dots {
    display: flex;
    gap: 0.5rem;
}

.hero-slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
    background: var(--gold);
    transform: scale(1.15);
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(10, 10, 11, 0.6);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold-light);
    cursor: pointer;
    transition: background var(--transition), border-color var(--transition);
}

.hero-slider__arrow:hover {
    background: rgba(212, 168, 42, 0.15);
    border-color: var(--gold);
}

.hero-slider__arrow--prev { left: 1.5rem; }
.hero-slider__arrow--next { right: 1.5rem; }

.section {
    padding: 5rem 0;
}

.section--alt {
    background: var(--bg-elevated);
}

.section--stats {
    padding: 2.5rem 0 4rem;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header__eyebrow {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.stat-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-card strong {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 0.25rem;
}

.stat-card span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.service-quick {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-quick__card {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-quick__card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: 0 12px 32px rgba(212, 168, 42, 0.15);
    color: var(--text);
}

.service-quick__card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.service-quick__body {
    padding: 1.25rem 1.5rem;
}

.service-quick__body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.35rem;
}

.service-quick__cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-light);
}

.categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 1 / 1;
    color: var(--text);
}

.category-card:hover {
    color: var(--text);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(10, 10, 11, 0.95) 0%, transparent 60%);
}

.category-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.category-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold-light);
}

.category-card--call:hover .category-card__link {
    color: var(--gold);
}

.services-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.services-tabs__nav {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 0.375rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
}

.services-tabs__btn {
    flex: 1;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    background: transparent;
    border: none;
    border-radius: calc(var(--radius-lg) - 4px);
    cursor: pointer;
    transition: color var(--transition), background var(--transition);
}

.services-tabs__btn.is-active {
    color: var(--bg);
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.services-tabs__panel {
    display: none;
}

.services-tabs__panel.is-active {
    display: block;
    animation: fadeUp 0.4s ease;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-item {
    padding: 1.5rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: border-color var(--transition), background var(--transition);
}

.service-item:hover {
    border-color: var(--border);
    background: var(--bg-card-hover);
}

.service-item h3 {
    font-family: var(--font-sans);
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gold-light);
}

.service-item p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-band {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(212, 168, 42, 0.12), rgba(212, 168, 42, 0.04));
    border-block: 1px solid var(--border);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.cta-band p {
    color: var(--text-muted);
}

.page-hero {
    padding: 4rem 0 3rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
    max-width: 560px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.about-grid img {
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow);
}

.about-content p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

.about-content p:first-of-type {
    font-size: 1.125rem;
    color: var(--text);
}

.about-content h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--gold-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-card {
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.contact-card h3 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.contact-card a,
.contact-card p {
    font-size: 1.0625rem;
    color: var(--text);
}

.contact-form {
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.form-alert {
    padding: 1rem;
    margin-bottom: 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.form-alert--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86efac;
}

.map-wrap {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    aspect-ratio: 21 / 9;
    min-height: 280px;
}

.map-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.3) contrast(1.1);
}

.site-footer {
    margin-top: 0;
}

.footer-cta {
    padding: 3rem 0;
    background: linear-gradient(180deg, var(--bg-elevated), var(--bg));
    border-top: 1px solid var(--border-subtle);
}

.footer-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-cta h2 {
    font-size: 1.5rem;
    margin-bottom: 0.375rem;
}

.footer-cta p {
    color: var(--text-muted);
}

.footer-main {
    padding: 3.5rem 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9375rem;
    color: var(--text-muted);
    max-width: 280px;
}

.brand--footer .brand__text strong {
    font-size: 1rem;
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-links a,
.footer-contact a {
    display: block;
    padding: 0.25rem 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-contact li {
    padding: 0.25rem 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.float-call {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 900;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--bg);
    border-radius: 50%;
    box-shadow: 0 8px 32px rgba(212, 168, 42, 0.45);
    transition: transform var(--transition);
}

.float-call:hover {
    transform: scale(1.08);
    color: var(--bg);
}

@media (max-width: 1024px) {
    .stats { grid-template-columns: repeat(3, 1fr); }
    .service-quick { grid-template-columns: 1fr; }
    .categories { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 80px; }

    .header-top { display: none; }

    .header-main__inner {
        padding: 0.75rem 0;
        min-height: 64px;
    }

    .brand__mark img {
        max-height: 48px;
    }

    main { padding-top: var(--header-h); }

    .nav-toggle { display: flex; }

    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg);
        padding: 1.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
    }

    .nav.is-open { transform: translateX(0); }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
    }

    .nav__link {
        padding: 1rem;
        font-size: 1.0625rem;
    }

    .header-actions .btn { display: none; }

    .hero-slider {
        aspect-ratio: 2 / 1;
    }

    .hero-slider__arrow { display: none; }

    .stats {
        margin-top: 2rem;
        grid-template-columns: 1fr;
    }

    .services-tabs__nav {
        flex-direction: column;
    }

    .section { padding: 3.5rem 0; }

    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .stats { grid-template-columns: 1fr; }
}
