:root {
    --ink: #101A2E;
    --ink-2: #1C2A45;
    --gold: #C6A15B;
    --gold-2: #E0C68C;
    --cream: #F8F4EC;
    --paper: #FFFFFF;
    --red: #9E2B2B;
    --muted: #6B7280;
    --line: #E5DDCD;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font: 16px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased
}

h1, h2, h3, .serif {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 600;
    line-height: 1.2
}

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

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 2px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: .02em;
    transition: .2s;
    cursor: pointer;
    border: none
}

.btn-gold {
    background: var(--gold);
    color: #1A1206
}

.btn-gold:hover {
    background: var(--gold-2)
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, .45);
    color: #fff;
    background: transparent
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .12)
}

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

/* header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(16, 26, 46, .96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(198, 161, 91, .25)
}

.hd {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 68px;
    color: #fff
}

.logo {
    font-family: Georgia, serif;
    font-size: 19px;
    font-weight: 600;
    letter-spacing: .01em;
    white-space: nowrap
}

.logo span {
    color: var(--gold)
}

nav {
    display: flex;
    gap: 24px;
    margin-left: auto;
    font-size: 14px
}

nav a {
    opacity: .85;
    transition: .15s
}

nav a:hover {
    opacity: 1;
    color: var(--gold-2)
}

.hd-tel {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold-2);
    white-space: nowrap
}

.burger {
    display: none;
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer
}

/* hero */
.hero {
    position: relative;
    background: var(--ink);
    color: #fff;
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding: 84px 0 92px
}

.hero h1 {
    font-size: clamp(34px, 4.4vw, 56px);
    margin: 18px 0 20px
}

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

.hero p {
    font-size: 17px;
    opacity: .82;
    max-width: 520px;
    margin-bottom: 32px
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-art {
    position: relative;
    aspect-ratio: 1/1
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 3px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .45)
}

.hero-badge {
    position: absolute;
    left: -24px;
    bottom: 32px;
    text-align: center;
    background: var(--gold);
    color: #1A1206;
    padding: 14px 22px;
    border-radius: 2px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    z-index: 2
}

.hero-badge b {
    display: block;
    font-family: Georgia, serif;
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: .01em
}

.hero-badge span {
    display: block;
    margin-top: 5px;
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: .85
}

/* facts */
.facts {
    background: var(--ink-2);
    color: #fff;
    border-top: 1px solid rgba(198, 161, 91, .2)
}

.facts-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 24px;
    padding: 36px 0
}

.fact b {
    display: block;
    font-family: Georgia, serif;
    font-size: 34px;
    color: var(--gold);
    line-height: 1
}

.fact span {
    font-size: 13px;
    opacity: .75
}

/* sections */
section {
    padding: 86px 0
}

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

.sec-head h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    margin: 12px 0 14px
}

.sec-head p {
    color: var(--muted);
    font-size: 16px
}

/* filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px
}

.chip {
    padding: 9px 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: .15s;
    color: var(--ink)
}

.chip:hover {
    border-color: var(--gold)
}

.chip.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.searchbar {
    display: flex;
    justify-content: center;
    margin-bottom: 34px
}

.searchbar input {
    width: 100%;
    max-width: 420px;
    padding: 13px 18px;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink)
}

.searchbar input:focus {
    outline: none;
    border-color: var(--gold)
}

/* grid */
.grid {
    display: grid;
    grid-template-columns:repeat(auto-fill, minmax(250px, 1fr));
    gap: 26px
}

.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .22s
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(16, 26, 46, .13);
    border-color: var(--gold)
}

.card-img {
    position: relative;
    aspect-ratio: 1/1;
    background: #F2ECE0;
    overflow: hidden
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s
}

.card:hover .card-img img {
    transform: scale(1.05)
}

.card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(16, 26, 46, .9);
    color: var(--gold-2);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 2px
}

.card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1
}

.card-body h3 {
    font-size: 16px;
    line-height: 1.35
}

.card-art {
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .04em
}

.card-foot {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding-top: 8px
}

.price {
    font-family: Georgia, serif;
    font-size: 19px;
    color: var(--red);
    font-weight: 600
}

.price small {
    font-size: 11px;
    color: var(--muted);
    font-family: inherit;
    font-weight: 400;
    display: block
}

.more {
    text-align: center;
    margin-top: 40px
}

.empty {
    text-align: center;
    color: var(--muted);
    padding: 60px 0
}


.card-img img.ph {
    opacity: 0;
    transition: opacity .45s ease, transform .4s ease;
    image-rendering: auto
}

.card-img img.ph.rd {
    opacity: 1
}

.card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(16, 26, 46, .04)
}

.hero-art img, .about-img img, .card-img img {
    image-rendering: -webkit-optimize-contrast
}

.lb img {
    background: #0A0F1A
}

/* services */
.svc {
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.svc-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 28px
}

.svc-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--cream);
    transition: .2s
}

.svc-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px)
}

.svc-num {
    font-family: Georgia, serif;
    font-size: 15px;
    color: var(--gold);
    margin-bottom: 14px;
    letter-spacing: .1em
}

.svc-card h3 {
    font-size: 20px;
    margin-bottom: 10px
}

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

/* about */
.about {
    background: var(--ink);
    color: #fff
}

.about-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 60px;
    align-items: center
}

.about h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    margin: 14px 0 22px
}

.about p {
    opacity: .82;
    margin-bottom: 16px
}

.about-img {
    aspect-ratio: 4/3;
    border-radius: 3px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4)
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.quote {
    border-left: 2px solid var(--gold);
    padding-left: 20px;
    margin-top: 26px;
    font-family: Georgia, serif;
    font-size: 18px;
    font-style: italic;
    color: var(--gold-2)
}

/* contact */
.ct-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 56px
}

.ct-item {
    margin-bottom: 22px
}

.ct-item b {
    display: block;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px
}

.ct-item a, .ct-item span {
    font-size: 17px
}

form {
    background: var(--paper);
    border: 1px solid var(--line);
    padding: 32px;
    border-radius: 2px
}

form label {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 6px
}

form input, form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    font-family: inherit;
    font-size: 15px;
    margin-bottom: 16px;
    background: var(--cream);
    color: var(--ink)
}

form input:focus, form textarea:focus {
    outline: none;
    border-color: var(--gold)
}

form textarea {
    min-height: 104px;
    resize: vertical
}

.req {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px
}

/* footer */
footer {
    background: var(--ink);
    color: #fff;
    padding: 48px 0 32px;
    font-size: 14px
}

.ft {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    align-items: center;
    opacity: .75
}

.ft-note {
    max-width: 100%;
    margin-top: 26px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px;
    opacity: .55;
    line-height: 1.6
}

/* lightbox */
.lb {
    position: fixed;
    inset: 0;
    background: rgba(10, 15, 26, .94);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 24px;
    cursor: zoom-out
}

.lb.on {
    display: flex
}

.lb img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 3px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .6)
}

.lb-cap {
    position: absolute;
    bottom: 24px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    opacity: .85
}

@media (max-width: 900px) {
    nav, .hd-tel {
        display: none
    }

    .burger {
        display: block
    }

    nav.open {
        display: flex;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--ink);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        border-bottom: 1px solid rgba(198, 161, 91, .25)
    }

    .hero-grid, .about-grid, .ct-grid {
        grid-template-columns:1fr;
        gap: 36px
    }

    .hero-grid {
        padding: 56px 0 64px
    }

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

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

    .hero-badge {
        left: 12px;
        bottom: 12px;
        padding: 12px 18px
    }

    section {
        padding: 60px 0
    }
}

/* inner pages */
.inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    min-height: 50vh;
}

.inner h1 {
    margin-bottom: 20px;
}

.inner .alert {
    padding: 16px 20px;
    background: #fdecea;
    border: 1px solid #e8c4c4;
    color: var(--red);
    margin: 16px 0;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 24px;
}

.breadcrumb > li + li::before {
    content: "/";
    margin-right: 8px;
    color: var(--line);
}

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