:root {
    --bg: #fbfaf7;
    --paper: #ffffff;
    --ink: #101010;
    --muted: #5b5b5b;
    --line: #e7e2da;
    --accent: #b69a6a;
    --shadow: 0 18px 40px rgba(0,0,0,.08);
    --radius: 18px;
    --max: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: radial-gradient(1200px 700px at 18% 0%, #f6f2ec 0%, var(--bg) 55%, #ffffff 100%);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(var(--max), calc(100% - 48px));
    margin-inline: auto;
}

/* Nav */
.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(10px);
    background: rgba(251,250,247,.78);
    border-bottom: 1px solid rgba(231,226,218,.75);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 18px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

    .brand img {
        height: 70px;
        width: auto;
    }

.navlinks {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-size: 12px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(16,16,16,.78);
}

    .navlinks a {
        padding: 10px 10px;
        border-radius: 999px;
        transition: background .2s ease, color .2s ease;
    }

        .navlinks a:hover {
            background: rgba(182,154,106,.12);
            color: var(--ink);
        }

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(182,154,106,.45);
    background: rgba(182,154,106,.10);
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .15s ease, background .2s ease;
    white-space: nowrap;
}

    .cta:hover {
        transform: translateY(-1px);
        background: rgba(182,154,106,.16);
    }

/* Mobile nav */
.burger {
    display: none;
}

.mobilemenu {
    display: none;
}

@media (max-width: 920px) {
    .navlinks {
        display: none;
    }

    .burger {
        display: inline-flex;
        gap: 10px;
        align-items: center;
    }

        .burger button {
            border: 1px solid rgba(231,226,218,.9);
            background: rgba(255,255,255,.55);
            border-radius: 999px;
            padding: 10px 12px;
            cursor: pointer;
        }

    .mobilemenu {
        display: none;
        padding: 10px 0 18px;
    }

        .mobilemenu.open {
            display: block;
        }

        .mobilemenu a {
            display: block;
            padding: 12px 0;
            border-bottom: 1px solid rgba(231,226,218,.7);
            font-size: 12px;
            letter-spacing: .1em;
            text-transform: uppercase;
        }
}

/* Hero */
.hero {
    padding: 32px 0 22px;
}

.heroWrap {
    position: relative;
    border-radius: calc(var(--radius) + 8px);
    overflow: hidden;
    border: 1px solid rgba(231,226,218,.85);
    box-shadow: var(--shadow);
    min-height: 520px;
    background: #111;
}

    .heroWrap img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: scale(1.02);
        filter: saturate(1.02) contrast(1.03);
    }

    .heroWrap::after {
        content: "";
        position: absolute;
        inset: 0;
        /*background: linear-gradient(90deg, rgba(0,0,0,.66) 0%, rgba(0,0,0,.42) 38%, rgba(0,0,0,.20) 70%, rgba(0,0,0,.10) 100%), linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.35) 100%);*/
        pointer-events: none;
    }

.heroInner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 22px;
    align-items: end;
    padding: 34px;
    min-height: 520px;
}

.heroCard {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    padding: 22px 22px 20px;
    backdrop-filter: blur(10px);
}

.kicker {
    margin: 0 0 10px;
    color: rgba(255,255,255,.85);
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
}

h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    font-size: 56px;
    line-height: 1.02;
    margin: 0 0 14px;
    color: #fff;
}

.lead {
    margin: 0;
    color: rgba(255,255,255,.86);
    font-size: 16px;
    max-width: 62ch;
}

.heroActions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 16px;
    border: 1px solid rgba(231,226,218,.95);
    background: rgba(255,255,255,.86);
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    transition: transform .15s ease, background .2s ease;
}

    .btn:hover {
        transform: translateY(-1px);
        background: #fff;
    }

    .btn.primary {
        border-color: rgba(182,154,106,.75);
        background: rgba(182,154,106,.22);
        color: #6e6e6e;
    }

        .btn.primary:hover {
            background: rgba(182,154,106,.30);
        }

.heroSide {
    display: grid;
    gap: 12px;
    align-self: stretch;
    align-content: end;
}

.heroBadge {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius);
    padding: 14px 14px;
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.88);
}

    .heroBadge img {
        height: 42px;
        width: auto;
    }

    .heroBadge .txt {
        font-size: 12px;
        letter-spacing: .10em;
        text-transform: uppercase;
        line-height: 1.4;
    }

        .heroBadge .txt b {
            display: block;
            font-size: 12px;
            letter-spacing: .14em;
        }

@media (max-width: 920px) {
    .heroInner {
        grid-template-columns: 1fr;
        min-height: 520px;
    }

    h1 {
        font-size: 44px;
    }
}

@media (max-width: 520px) {
    .heroInner {
        padding: 22px;
    }

    h1 {
        font-size: 40px;
    }
}

/* Sections */
section {
    padding: 100px 0;
}

.sectionHead {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: end;
    margin-bottom: 22px;
}

    .sectionHead h2 {
        font-family: "Cormorant Garamond", serif;
        font-weight: 600;
        font-size: 40px;
        margin: 0;
        line-height: 1.06;
    }

    .sectionHead p {
        font-family: "Cormorant Garamond", serif;
        margin: 0;
        color: rgba(16,16,16,.72);
        max-width: 70ch;
        justify-self: end;
    }

.sectionHead {
    grid-template-columns: 1fr;
}

    .sectionHead p {
        justify-self: start;
    }

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 16px;
    align-items: stretch;
}

.gMain, .gSmall {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(231,226,218,.85);
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
    background: #fff;
    min-height: 320px;
}

    .gMain img, .gSmall img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gSide {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 920px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .gSide {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: unset;
    }

    .gMain {
        min-height: 260px;
    }

    .gSmall {
        min-height: 220px;
    }
}

@media (max-width: 560px) {
    .gSide {
        grid-template-columns: 1fr;
    }
}

/* Brand cards */
.brandGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

@media (max-width: 980px) {
    .brandGrid {
        grid-template-columns: 1fr;
    }
}

.bcard {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 0;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(231,226,218,.85);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
    min-height: 240px;
}

    .bcard .photo {
        position: relative;
        border-right: 1px solid rgba(231,226,218,.75);
        min-height: 240px;
    }

        .bcard .photo img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .bcard .photo::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.25) 100%);
            pointer-events: none;
        }

    .bcard .content {
        padding: 18px;
        overflow: hidden;
    }

    .bcard .tag {
        display: inline-flex;
        border: 1px solid rgba(182,154,106,.35);
        background: rgba(182,154,106,.10);
        padding: 6px 10px;
        border-radius: 999px;
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: rgba(16,16,16,.78);
        margin-bottom: 10px;
    }

    .bcard h3 {
        margin: 0 0 8px;
        font-family: "Cormorant Garamond", serif;
        font-size: 28px;
        font-weight: 600;
        line-height: 1.05;
    }

    .bcard p {
        margin: 0 0 14px;
        color: rgba(16,16,16,.72);
        font-size: 14px;
    }

/* Accordion + price tables */
.accordion {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(231,226,218,.85);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

details {
    border-bottom: 1px solid rgba(231,226,218,.8);
}

    details:last-child {
        border-bottom: none;
    }

summary {
    list-style: none;
    cursor: pointer;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    user-select: none;
}

    summary::-webkit-details-marker {
        display: none;
    }

.sumLeft {
    display: flex;
    gap: 10px;
    align-items: baseline;
    flex-wrap: wrap;
}

.sumTitle {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(16,16,16,.82);
}

.sumSub {
    font-size: 12px;
    color: rgba(91,91,91,.88);
}

.chev {
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(16,16,16,.55);
    border-bottom: 2px solid rgba(16,16,16,.55);
    transform: rotate(45deg);
    transition: transform .2s ease;
    margin-right: 4px;
}

details[open] .chev {
    transform: rotate(225deg);
}

.panel {
    padding: 0 18px 18px;
    color: rgba(16,16,16,.76);
    font-size: 14px;
}

    .panel p {
        margin: 10px 0 12px;
    }

.note {
    margin: 12px 0 0;
    color: rgba(91,91,91,.9);
    font-size: 12px;
}

.pricetable {
    margin-top: 12px;
    border: 1px solid rgba(231,226,218,.85);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,.74);
}

.phead, .prow {
    display: grid;
    grid-template-columns: 1fr 120px 92px;
    gap: 12px;
    align-items: center;
    padding: 12px 12px;
}

.phead {
    background: rgba(182,154,106,.10);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(16,16,16,.78);
    border-bottom: 1px solid rgba(231,226,218,.8);
}

.prow {
    border-bottom: 1px solid rgba(231,226,218,.8);
}

    .prow:last-child {
        border-bottom: none;
    }

.pname {
    font-weight: 500;
    color: rgba(16,16,16,.86);
}

.pdur {
    color: rgba(91,91,91,.92);
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.pprice {
    text-align: right;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

@media (max-width: 560px) {
    .phead, .prow {
        grid-template-columns: 1fr 92px;
    }

    .pdur {
        display: none;
    }
}

/* Contact */
.contactGrid {
    display: grid;
    gap: 16px;
}

@media (max-width: 920px) {
    .contactGrid {
    }
}

.contactCard {
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(231,226,218,.85);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 10px 28px rgba(0,0,0,.06);
}

.miniTitle {
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(16,16,16,.82);
}

.contactLine {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(231,226,218,.75);
    font-size: 14px;
}

    .contactLine:last-child {
        border-bottom: none;
    }

    .contactLine span {
        color: rgba(91,91,91,.9);
    }

.contactCard a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

form {
    display: grid;
    gap: 10px;
    margin-top: 10px;
}

input, textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(231,226,218,.95);
    background: rgba(255,255,255,.82);
    font: inherit;
    font-size: 14px;
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.formNote {
    color: rgba(91,91,91,.9);
    font-size: 12px;
    margin: 6px 0 0;
}

footer {
    padding: 34px 0 46px;
    border-top: 1px solid rgba(231,226,218,.85);
    color: rgba(91,91,91,.92);
    font-size: 12px;
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .foot a {
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    /* Cookie banner */
    .cookie {
        position: fixed;
        left: 14px;
        right: 14px;
        bottom: 14px;
        max-width: 980px;
        margin: 0 auto;
        background: rgba(255,255,255,.88);
        border: 1px solid rgba(231,226,218,.9);
        border-radius: 20px;
        box-shadow: var(--shadow);
        padding: 14px;
        display: none;
        z-index: 100;
        backdrop-filter: blur(10px);
    }

        .cookie.open {
            display: block;
        }

    .cookieGrid {
        display: grid;
        grid-template-columns: 1.3fr .7fr;
        gap: 12px;
        align-items: center;
    }

    .cookie p {
        margin: 0;
        color: rgba(16,16,16,.72);
        font-size: 12px;
    }

    .cookieActions {
        display: flex;
        gap: 10px;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    @media (max-width: 920px) {
        .cookieGrid {
            grid-template-columns: 1fr;
        }

        .cookieActions {
            justify-content: flex-start;
        }
    }

    /* Modals */
    .modal {
        border: none;
        padding: 0;
        max-width: 860px;
        width: calc(100% - 28px);
        border-radius: 18px;
    }

        .modal::backdrop {
            background: rgba(0,0,0,.38);
        }

    .modalBox {
        background: #fff;
        border: 1px solid rgba(231,226,218,.9);
        border-radius: 18px;
        overflow: hidden;
    }

    .modalHeader {
        padding: 18px;
        border-bottom: 1px solid rgba(231,226,218,.8);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .modalHeader strong {
            letter-spacing: .14em;
            text-transform: uppercase;
            font-size: 12px;
        }

    .modalBody {
        padding: 18px 18px 22px;
        color: rgba(16,16,16,.78);
        font-size: 14px;
    }


    /* Modals */
    .modal {
        border: none;
        padding: 0;
        max-width: 860px;
        width: calc(100% - 28px);
        border-radius: 18px;
    }

        .modal::backdrop {
            background: rgba(0,0,0,.38);
        }

    .modalBox {
        background: #fff;
        border: 1px solid rgba(231,226,218,.9);
        border-radius: 18px;
        overflow: hidden;
    }

    .modalHeader {
        padding: 18px;
        border-bottom: 1px solid rgba(231,226,218,.8);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .modalHeader strong {
            letter-spacing: .14em;
            text-transform: uppercase;
            font-size: 12px;
        }

    .modalBody {
        padding: 18px 18px 22px;
        color: rgba(16,16,16,.78);
        font-size: 14px;
    }

    .aboutPhoto img{
        max-width: 50%;
        border-radius: var(--radius);
        overflow: hidden;
        border: 1px solid rgba(231,226,218,.85);
        box-shadow: 0 10px 28px rgba(0,0,0,.06);
        background: #fff;
    }
