:root {
    --bg: #080808;
    --bg-soft: #111113;
    --bg-panel: #18171a;
    --text: #f7f1e7;
    --muted: #b7aea1;
    --gold: #d9b36c;
    --gold-soft: #f0d79b;
    --line: rgba(255, 255, 255, 0.12);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    --font-display: "Cinzel", Georgia, serif;
    --font-body: "Poppins", Arial, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.74) 45%, rgba(8, 8, 8, 0.2) 100%),
        url("images/hero.jpeg") center / cover no-repeat;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.site-header::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 8, 8, 0.94) 0%, rgba(8, 8, 8, 0.72) 44%, rgba(8, 8, 8, 0.22) 100%);
    pointer-events: none;
}

.site-header::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: auto 0 0;
    height: 180px;
    background: linear-gradient(180deg, transparent, var(--bg));
    pointer-events: none;
}

.navbar {
    position: fixed;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px clamp(22px, 5vw, 70px);
    transition: background 0.25s ease, padding 0.25s ease, border-color 0.25s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled,
.nav-open .navbar {
    padding-block: 16px;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(18px);
    border-color: var(--line);
}

.brand {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    letter-spacing: 0;
}

.brand span {
    color: var(--gold);
}

.site-nav {
    display: flex;
    gap: clamp(18px, 3vw, 36px);
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
}

.site-nav a {
    color: rgba(247, 241, 231, 0.82);
    transition: color 0.2s ease;
}

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

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--text);
}

.hero {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: grid;
    align-content: center;
    gap: 48px;
    padding: 150px clamp(22px, 7vw, 110px) 80px;
}

.hero-content {
    max-width: 760px;
}

.eyebrow,
.badge {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 14px 0 16px;
    padding: 6px 14px;
    border: 1px solid rgba(217, 179, 108, 0.5);
    border-radius: 999px;
    background: rgba(217, 179, 108, 0.1);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.12;
}

h1 {
    max-width: 820px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 8vw, 6.9rem);
}

h2 {
    margin-bottom: 22px;
    font-size: clamp(2.1rem, 4vw, 4rem);
}

h3 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.hero-copy,
.section-copy p,
.service-card p,
.site-footer p {
    color: var(--muted);
}

.hero-copy {
    max-width: 660px;
    font-size: clamp(1rem, 1.5vw, 1.18rem);
}

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

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid rgba(240, 215, 155, 0.62);
    border-radius: 999px;
    background: rgba(10, 10, 12, 0.45);
    font-weight: 700;
    letter-spacing: 0;
    isolation: isolate;
    overflow: hidden;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        0 16px 42px rgba(0, 0, 0, 0.34);
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn::before {
    content: "";
    width: 13px;
    height: 13px;
    margin-right: 10px;
    border: 2px solid currentColor;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(217, 179, 108, 0.16);
}

.btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%, rgba(217, 179, 108, 0.14));
    opacity: 0.9;
}

.btn:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.12),
        0 20px 54px rgba(217, 179, 108, 0.18),
        0 22px 54px rgba(0, 0, 0, 0.42);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-soft), var(--gold) 48%, #9a7432);
    color: #111;
    border-color: rgba(255, 235, 184, 0.85);
}

.btn-secondary {
    border-color: rgba(217, 179, 108, 0.46);
    background: rgba(255, 255, 255, 0.055);
    color: var(--gold-soft);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 170px));
    gap: 14px;
}

.hero-stats div,
.service-card,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(18, 18, 20, 0.78);
    box-shadow: var(--shadow);
}

.hero-stats div {
    padding: 22px;
}

.hero-stats strong {
    display: block;
    color: var(--gold-soft);
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.85rem;
}

.section {
    padding: clamp(76px, 10vw, 130px) clamp(22px, 6vw, 96px);
}

.section-grid,
.contact-wrap {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
    gap: clamp(38px, 7vw, 90px);
    align-items: center;
    max-width: 1180px;
    margin: 0 auto;
}

.contact-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
}

.about-image img,
.gallery-item img {
    height: 100%;
    object-fit: cover;
}

.about-image {
    min-height: 560px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.text-link {
    display: inline-flex;
    margin-top: 10px;
    color: var(--gold-soft);
    font-weight: 700;
    border-bottom: 1px solid currentColor;
}

.services,
.contact {
    background: var(--bg-soft);
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 44px;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    max-width: 1180px;
    margin: 0 auto;
}

.service-card {
    padding: 28px;
}

.service-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 22px;
    border-radius: 8px;
    background: rgba(217, 179, 108, 0.12);
    color: var(--gold-soft);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
    max-width: 1180px;
    margin: 0 auto;
}

.gallery-item {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    background: var(--bg-panel);
}

.gallery-large {
    grid-row: span 2;
}

.contact-details {
    display: grid;
    gap: 8px;
    margin-top: 24px;
    color: var(--gold-soft);
    font-weight: 700;
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: clamp(24px, 4vw, 38px);
}

label {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font: inherit;
    padding: 13px 14px;
    outline: none;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--gold);
}

textarea {
    resize: vertical;
}

select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--gold-soft) 50%), linear-gradient(135deg, var(--gold-soft) 50%, transparent 50%);
    background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-note {
    min-height: 24px;
    margin: 0;
    color: var(--gold-soft);
    font-size: 0.9rem;
}

.site-footer {
    display: grid;
    gap: 8px;
    justify-items: center;
    padding: 42px 22px;
    border-top: 1px solid var(--line);
    text-align: center;
}

.site-footer p {
    margin: 0;
}

.quote-section {
    background:
        radial-gradient(circle at 18% 0%, rgba(217, 179, 108, 0.14), transparent 32%),
        linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.quote-shell {
    position: relative;
    max-width: 1120px;
    margin: 0 auto;
    border: 1px solid rgba(217, 179, 108, 0.22);
    border-radius: 8px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 28%),
        rgba(14, 14, 16, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        var(--shadow);
    overflow: hidden;
}

.quote-shell::before,
.quote-shell::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(217, 179, 108, 0.18);
    border-radius: 50%;
    pointer-events: none;
}

.quote-shell::before {
    width: 260px;
    height: 260px;
    top: -132px;
    right: -92px;
    box-shadow: 0 0 80px rgba(217, 179, 108, 0.08);
}

.quote-shell::after {
    width: 160px;
    height: 160px;
    top: -72px;
    right: 20px;
}

.quote-heading {
    position: relative;
    margin-bottom: 0;
    padding: clamp(30px, 5vw, 58px) clamp(22px, 5vw, 64px) 28px;
    text-align: left;
}

.quote-heading p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
}

.quote-form {
    position: relative;
    display: grid;
    gap: 28px;
    padding: 0 clamp(22px, 5vw, 64px) clamp(30px, 5vw, 58px);
}

.quote-form fieldset {
    margin: 0;
    padding: 28px 0 0;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.quote-form legend {
    padding-right: 18px;
    color: var(--gold-soft);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    font-weight: 700;
}

.quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.wide-field {
    margin-top: 18px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.choice-grid label {
    position: relative;
    display: block;
}

.choice-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-grid span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 48px;
    padding: 10px 14px 10px 42px;
    border: 1px solid rgba(217, 179, 108, 0.24);
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent),
        rgba(255, 255, 255, 0.038);
    color: var(--muted);
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.choice-grid span::before {
    content: "";
    position: absolute;
    left: 14px;
    width: 14px;
    height: 14px;
    border: 2px solid rgba(240, 215, 155, 0.72);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(217, 179, 108, 0.08);
}

.choice-grid span::after {
    content: "";
    position: absolute;
    left: 19px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-soft);
    opacity: 0;
    transform: scale(0.4);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.choice-grid input:checked + span {
    border-color: rgba(217, 179, 108, 0.75);
    background:
        linear-gradient(145deg, rgba(240, 215, 155, 0.18), rgba(217, 179, 108, 0.08)),
        rgba(217, 179, 108, 0.1);
    color: var(--gold-soft);
    transform: translateY(-1px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.07),
        0 12px 32px rgba(217, 179, 108, 0.12);
}

.choice-grid input:checked + span::after {
    opacity: 1;
    transform: scale(1);
}

.privacy-check {
    display: flex;
    grid-template-columns: none;
    align-items: flex-start;
    gap: 12px;
    color: var(--muted);
}

.privacy-check input {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--gold);
}

.quote-submit {
    justify-self: start;
    min-width: min(100%, 340px);
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .section-grid,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 420px;
    }
}

@media (max-width: 760px) {
    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 73px 16px auto;
        display: grid;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(8, 8, 8, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .site-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .site-nav a {
        display: block;
        padding: 14px;
    }

    .hero {
        padding-top: 125px;
    }

    .hero-stats,
    .gallery-grid,
    .service-grid,
    .quote-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 240px;
    }

    .gallery-large {
        grid-row: span 1;
    }

    .quote-heading,
    .quote-form {
        padding-inline: 20px;
    }
}

@media (max-width: 520px) {
    .navbar {
        padding-inline: 16px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    h1 {
        font-size: 2.8rem;
    }

    .section {
        padding-inline: 18px;
    }

    .choice-grid {
        grid-template-columns: 1fr;
    }

    .quote-submit {
        width: 100%;
    }
}
