:root {
    --ink: #171513;
    --espresso: #24170f;
    --bronze: #9a6b3d;
    --gold: #c99b62;
    --champagne: #ead8bf;
    --cream: #f8f4ee;
    --white: #fff;
    --muted: #6f675f;
    --line: #e7ddd1;
    --shadow: 0 24px 70px rgba(42, 27, 17, .13)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.65
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.topbar {
    background: var(--espresso);
    color: #f4e9dc;
    font-size: 13px
}

.topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar-inner div {
    display: flex;
    gap: 25px
}

.navbar {
    height: 99px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand img {
    width: 285px;
    max-height: 80px;
    object-fit: contain;
    object-position: left center
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 600
}

.nav-links>a:not(.btn):hover {
    color: var(--bronze)
}

.menu-toggle {
    display: none;
    border: 0;
    background: none
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #222;
    margin: 5px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8d6035, #c6975f);
    color: white;
    border: 0;
    border-radius: 6px;
    padding: 15px 24px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(148, 99, 52, .2);
    transition: .25s
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-small {
    padding: 11px 17px
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow: none
}

.hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 75% 25%, #50351f 0, transparent 31%), linear-gradient(120deg, #160f0a, #2d1d12 62%, #140d09);
    color: white;
    padding: 90px 0 75px
}

.hero:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0 55%, rgba(255, 255, 255, .025));
    pointer-events: none
}

.hero-glow {
    position: absolute;
    width: 470px;
    height: 470px;
    border: 1px solid rgba(205, 157, 99, .24);
    border-radius: 50%;
    right: -120px;
    top: -130px;
    box-shadow: 0 0 0 50px rgba(205, 157, 99, .04), 0 0 0 100px rgba(205, 157, 99, .025)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold)
}

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

h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 1.03;
    max-width: 760px;
    margin: 15px 0 25px
}

h1 em {
    color: var(--gold);
    font-style: normal
}

.hero-copy>p {
    color: #dfd6ce;
    font-size: 18px;
    max-width: 700px
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 32px 0
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #d8cfc6;
    font-size: 13px
}

.hero-card {
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    padding: 34px;
    border-radius: 14px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .33);
    border-top: 4px solid var(--gold)
}

.hero-card-badge {
    color: var(--bronze);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.hero-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    margin: 9px 0
}

.hero-card p {
    color: var(--muted)
}

input,
select,
textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd2c5;
    border-radius: 5px;
    background: white;
    font: inherit;
    outline: none
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--bronze);
    box-shadow: 0 0 0 3px rgba(154, 107, 61, .1)
}

.hero-card form {
    display: grid;
    gap: 11px
}

.hero-card .btn {
    width: 100%
}

.hero-card small {
    display: block;
    margin-top: 12px;
    color: #7f766e
}

.stats {
    background: var(--cream);
    border-bottom: 1px solid var(--line)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 28px 0
}

.stats-grid div {
    padding: 0 28px;
    border-right: 1px solid var(--line)
}

.stats-grid div:last-child {
    border: 0
}

.stats strong {
    display: block;
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: var(--bronze)
}

.stats span {
    font-size: 13px;
    color: var(--muted)
}

.section {
    padding: 100px 0
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px
}

.section-head.left {
    text-align: left;
    margin: 0
}

.section-head h2,
.about-grid h2,
.contact-section h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.15;
    margin: 12px 0 15px
}

.section-head p,
.about-grid p {
    color: var(--muted)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.service-card {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: white;
    transition: .3s
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: #d1b18d
}

.service-card span {
    font-family: "Playfair Display", serif;
    color: var(--gold);
    font-size: 26px
}

.service-card h3 {
    margin: 32px 0 9px;
    font-size: 20px
}

.service-card p {
    color: var(--muted);
    font-size: 14px
}

.dark-section {
    background: var(--espresso);
    color: white
}

.dark-section .section-head p {
    color: #cfc3b8
}

.process-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
    align-items: start
}

.steps {
    display: grid;
    gap: 18px
}

.step {
    display: flex;
    gap: 20px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035)
}

.step b {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    flex: 0 0 auto
}

.step h3 {
    margin: 0 0 5px
}

.step p {
    margin: 0;
    color: #cabfb5;
    font-size: 14px
}

.pricing-section {
    background: #fbf8f4
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch
}

.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 34px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 45px rgba(45, 28, 16, .06)
}

.price-card.featured {
    border: 2px solid var(--bronze);
    transform: translateY(-10px)
}

.popular {
    position: absolute;
    right: 20px;
    top: 18px;
    background: var(--espresso);
    color: white;
    border-radius: 20px;
    padding: 6px 11px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.price-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 31px;
    margin-bottom: 3px
}

.fee {
    color: var(--bronze);
    font-size: 14px
}

.price {
    font-size: 52px;
    font-weight: 800;
    margin: 14px 0 18px
}

.price sup {
    font-size: 18px
}

.price-card ul {
    padding: 0;
    margin: 0 0 18px;
    list-style: none;
    flex: 1
}

.price-card li {
    padding: 9px 0 9px 24px;
    border-bottom: 1px solid #f1ebe4;
    font-size: 14px;
    position: relative
}

.price-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: 800
}

.price-card small {
    color: var(--muted);
    margin-bottom: 18px
}

.btn-block {
    width: 100%
}

.about-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center
}

.about-panel {
    min-height: 430px;
    background: linear-gradient(135deg, #2b1c12, #543820);
    border-radius: 14px;
    color: white;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden
}

.about-panel:before {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    border: 45px solid rgba(204, 158, 98, .12);
    border-radius: 50%;
    right: -70px;
    top: -70px
}

.monogram {
    font-family: "Playfair Display", serif;
    font-size: 68px;
    color: var(--gold)
}

.about-panel h3 {
    font-family: "Playfair Display", serif;
    font-size: 31px;
    max-width: 380px
}

.text-link {
    color: var(--bronze);
    font-weight: 800
}

.faq-section {
    background: var(--cream)
}

.faq-list {
    max-width: 860px;
    margin: auto
}

.faq-list details {
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin: 12px 0;
    padding: 0 22px
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    padding: 20px 0
}

.faq-list p {
    color: var(--muted);
    padding: 0 0 20px;
    margin: 0
}

.contact-section {
    background: linear-gradient(120deg, #20150e, #3a2516);
    color: white;
    padding: 100px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: start
}

.contact-section p {
    color: #d4c8bd
}

.contact-points {
    display: grid;
    gap: 10px;
    margin-top: 28px
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    display: grid;
    gap: 14px
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-message {
    margin: 0 !important;
    color: var(--bronze) !important;
    font-weight: 700
}

footer {
    background: #100b08;
    color: #cfc5bb;
    padding: 70px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 55px
}

.footer-grid img {
    width: 255px;
    filter: brightness(1.1)
}

.footer-grid p {
    max-width: 360px
}

.footer-grid h4 {
    color: white
}

.footer-grid>div {
    display: grid;
    align-content: start;
    gap: 9px
}

.footer-grid a:hover {
    color: var(--gold)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 45px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 12px
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

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

    .nav-links {
        display: none;
        position: absolute;
        top: 130px;
        left: 20px;
        right: 20px;
        background: white;
        box-shadow: var(--shadow);
        padding: 20px;
        flex-direction: column;
        z-index: 10
    }

    .nav-links.open {
        display: flex
    }

    .hero-grid,
    .process-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .pricing-grid {
        grid-template-columns: 1fr
    }

    .price-card.featured {
        transform: none
    }

    .hero-card {
        max-width: 620px
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }

    .stats-grid div {
        border: 0
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .topbar-inner>span {
        display: none
    }

    .topbar-inner {
        justify-content: center
    }
}

@media(max-width:640px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .topbar-inner div {
        gap: 10px;
        font-size: 11px
    }

    .navbar {
        height: 78px
    }

    .brand img {
        width: 220px
    }

    .nav-links {
        top: 116px
    }

    .hero {
        padding: 65px 0
    }

    .hero-actions {
        flex-direction: column
    }

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

    .stats-grid,
    .services-grid,
    .footer-grid,
    .two-col {
        grid-template-columns: 1fr
    }

    .section {
        padding: 75px 0
    }

    .hero-card,
    .price-card,
    .contact-form {
        padding: 24px
    }

    .footer-bottom {
        display: grid;
        gap: 8px
    }

    .trust-row {
        display: grid
    }

    .process-grid,
    .about-grid,
    .contact-grid {
        gap: 45px
    }
}