:root {
    color-scheme: dark;
    --dark-bg: #121212;
    --dark-card: #1c1c1c;
    --dark-accent: #252525;
    --text: #eaeaea;
    --muted: #a9a9a9;
    --muted-soft: #777;
    --gold: #c5a059;
    --gold-light: #e5c07b;
    --gold-dark: #a37f3c;
    --line: rgba(197, 160, 89, 0.18);
    --line-strong: rgba(197, 160, 89, 0.32);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.46);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--dark-bg);
    color: var(--text);
    font-family: Montserrat, Arial, sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body::selection {
    background: var(--gold);
    color: var(--dark-bg);
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--line);
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.nav {
    width: min(1280px, calc(100% - 32px));
    min-height: 82px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    text-decoration: none;
}

.brand img {
    width: 54px;
    height: 54px;
    flex: 0 0 auto;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 22px rgba(197, 160, 89, 0.12);
}

.brand > span {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.brand strong {
    display: block;
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.brand > span > span {
    display: block;
    margin-top: 3px;
    color: #8f8f8f;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.2em;
    line-height: 1.45;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    color: #c8c8c8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a[href^="tel:"] {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 6px;
    color: #17130d;
    background: linear-gradient(135deg, #c5a059 0%, #f3e5ab 50%, #a37f3c 100%);
    box-shadow: 0 12px 28px rgba(197, 160, 89, 0.16);
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.46) 52%, rgba(18, 18, 18, 0.78) 100%),
        linear-gradient(90deg, rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.54), rgba(18, 18, 18, 0.34)),
        url("/assets/images/dab6a3e3-a203-4cc2-850c-cd3ddadb9513.jpeg") center 38% / cover;
    transform: scale(1.01);
}

.hero-inner,
.section,
.footer-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    position: relative;
}

.hero-copy {
    max-width: 820px;
    padding: 112px 0 120px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.28em;
    line-height: 1.5;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
    opacity: 0.75;
}

h1,
h2,
h3 {
    margin: 0;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.08;
}

h1 {
    max-width: 900px;
    margin-top: 18px;
    font-size: clamp(42px, 7.4vw, 78px);
}

h1::after {
    content: "";
    display: block;
    width: 92px;
    height: 1px;
    margin-top: 24px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

h2 {
    margin-top: 10px;
    font-size: clamp(30px, 4vw, 48px);
}

h3 {
    font-size: 24px;
}

.lead {
    max-width: 710px;
    margin: 26px 0 0;
    color: #d4d4d4;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.85;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid rgba(197, 160, 89, 0.42);
    border-radius: 6px;
    color: var(--gold);
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.3;
    text-transform: uppercase;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.06);
}

.button.primary {
    border: 0;
    color: #17130d;
    background: linear-gradient(135deg, #c5a059 0%, #f3e5ab 50%, #a37f3c 100%);
    box-shadow: 0 0 24px rgba(197, 160, 89, 0.28);
}

.button.primary:hover {
    box-shadow: 0 0 34px rgba(197, 160, 89, 0.44);
}

.section {
    padding: 96px 0;
}

.section.alt {
    width: 100%;
    max-width: none;
    border-top: 1px solid rgba(197, 160, 89, 0.08);
    border-bottom: 1px solid rgba(197, 160, 89, 0.08);
    background: var(--dark-card);
}

.section.alt > .section-inner {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.intro {
    max-width: 780px;
    margin-bottom: 42px;
}

.intro p,
.copy p {
    color: #a9a9a9;
    font-size: 15px;
    font-weight: 300;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.58);
    padding: 28px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.section:not(.alt) .card {
    background: rgba(28, 28, 28, 0.72);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 89, 0.38);
    box-shadow: 0 14px 34px rgba(197, 160, 89, 0.12);
}

.card h3 {
    color: #fff;
}

.card p {
    margin: 14px 0 0;
    color: #a9a9a9;
    font-size: 14px;
    font-weight: 300;
}

.card a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.card a:hover {
    color: var(--gold-light);
}

.price-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--dark-card);
    padding: 22px;
    box-shadow: var(--shadow);
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px dotted rgba(197, 160, 89, 0.4);
    padding-bottom: 12px;
    color: var(--muted);
}

.price-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.price-row strong {
    color: #fff;
    font-weight: 500;
}

.price-row span:last-child {
    color: var(--gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    font-weight: 700;
    white-space: nowrap;
}

.faq {
    display: grid;
    gap: 14px;
}

details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 18, 18, 0.62);
    padding: 20px 22px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

details[open],
details:hover {
    border-color: rgba(197, 160, 89, 0.34);
    background: rgba(18, 18, 18, 0.82);
}

summary {
    cursor: pointer;
    color: #fff;
    font-weight: 600;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    float: right;
    color: var(--gold);
    font-size: 22px;
    line-height: 1;
}

details[open] summary::after {
    content: "-";
}

details p {
    margin: 14px 0 0;
    color: #a9a9a9;
    font-size: 14px;
    font-weight: 300;
}

.footer {
    border-top: 1px solid var(--line);
    background: #0d0d0d;
}

.footer-inner {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #777;
    font-size: 13px;
}

@media (max-width: 900px) {
    .nav {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 16px 0;
    }

    .nav-links {
        width: 100%;
        flex-wrap: wrap;
        gap: 10px 14px;
        font-size: 11px;
    }

    .nav-links a[href^="tel:"] {
        min-height: 38px;
        padding: 0 14px;
    }

    .hero {
        min-height: auto;
    }

    .hero::before {
        background:
            linear-gradient(to top, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.64) 52%, rgba(18, 18, 18, 0.86) 100%),
            url("/assets/images/dab6a3e3-a203-4cc2-850c-cd3ddadb9513.jpeg") center top / cover;
    }

    .hero-copy {
        padding: 74px 0 82px;
    }

    .lead {
        font-size: 16px;
    }

    .section {
        padding: 72px 0;
    }

    .grid,
    .grid.two {
        grid-template-columns: 1fr;
    }

    .price-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .footer-inner {
        min-height: auto;
        align-items: flex-start;
        flex-direction: column;
        padding: 28px 0;
    }
}

@media (max-width: 520px) {
    .nav,
    .hero-inner,
    .section,
    .section.alt > .section-inner,
    .footer-inner {
        width: min(100% - 24px, 1120px);
    }

    .brand img {
        width: 48px;
        height: 48px;
    }

    .brand strong {
        font-size: 17px;
    }

    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 30px;
    }

    .actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        min-height: 50px;
        padding: 0 18px;
    }
}
