:root {
    --ink: #171512;
    --cream: #f2eee7;
    --paper: #faf8f4;
    --gold: #b5955d;
    --muted: #777068;
    --line: rgba(23, 21, 18, .17)
}

main {
    display: flex;
    flex-direction: column
}

.hero {
    order: 0
}

.marquee {
    order: 1
}

.artist {
    order: 2
}

.portfolio {
    order: 3
}

.services {
    order: 4
}

.quote-section {
    order: 5
}

.booking {
    order: 6
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Manrope, sans-serif;
    font-weight: 300
}

.navbar {
    padding: 22px 0;
    transition: .35s;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .42), transparent)
}

.navbar.scrolled {
    padding: 13px 0;
    background: rgba(20, 18, 15, .96);
    backdrop-filter: blur(12px)
}

.navbar-brand,
.footer-brand {
    color: #fff;
    font-size: 14px;
    letter-spacing: .24em;
    font-weight: 600
}

.navbar-brand span,
.footer-brand span {
    color: #cfb27d;
    font-weight: 300
}

.navbar-toggler {
    color: #fff;
    border: 0;
    font-size: 28px
}

.navbar-toggler:focus {
    box-shadow: none
}

.nav-link {
    color: rgba(255, 255, 255, .82) !important;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em
}

.nav-link:hover {
    color: #fff !important
}

.nav-book {
    border: 1px solid rgba(255, 255, 255, .55);
    padding: 10px 18px !important
}

.hero {
    height: min(900px, 100svh);
    min-height: 680px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden
}

.hero-image {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1604902396830-aca29e19b067?auto=format&fit=crop&w=2100&q=90') center 54%/cover;
    transform: scale(1.02)
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 12, 9, .73) 0%, rgba(16, 12, 9, .35) 54%, rgba(16, 12, 9, .09)), linear-gradient(0deg, rgba(0, 0, 0, .28), transparent 40%)
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 55px
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: 11px;
    font-weight: 500;
    margin-bottom: 22px;
    color: #d7bc87
}

.text-dark.eyebrow {
    color: #896c3d !important
}

.display-title,
h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    line-height: .92
}

.display-title {
    font-size: clamp(68px, 8.7vw, 132px);
    letter-spacing: -.04em;
    margin-bottom: 30px
}

.display-title em,
h2 em {
    font-weight: 400
}

.hero-copy {
    font-size: 16px;
    line-height: 1.8;
    max-width: 540px;
    color: rgba(255, 255, 255, .78);
    margin-bottom: 34px
}

.btn {
    border-radius: 0;
    padding: 15px 25px;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 10px;
    font-weight: 600
}

.btn-gold {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff
}

.btn-gold:hover {
    background: #c3a672;
    border-color: #c3a672;
    color: #fff
}

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

.btn-ghost:hover {
    background: #fff;
    color: var(--ink)
}

.btn i {
    margin-left: 12px
}

.hero-meta {
    position: absolute;
    bottom: 28px;
    left: 0;
    right: 0;
    padding: 0 4%;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65)
}

.marquee {
    background: var(--gold);
    color: #fff;
    overflow: hidden;
    padding: 14px 0
}

.marquee-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: scroll 22s linear infinite;
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 10px;
    align-items: center
}

.marquee-track i {
    font-style: normal;
    font-size: 8px
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

.section-padding {
    padding: 120px 0
}

h2 {
    font-size: clamp(52px, 6vw, 84px);
    letter-spacing: -.035em
}

.section-intro {
    max-width: 360px;
    color: var(--muted);
    line-height: 1.8
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    grid-template-rows: 340px 340px;
    gap: 20px
}

.gallery-card {
    border: 0;
    padding: 0;
    background: none;
    position: relative;
    overflow: hidden;
    text-align: left
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .7, .2, 1)
}

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

.gallery-card span {
    position: absolute;
    left: 18px;
    bottom: 17px;
    background: rgba(20, 18, 15, .84);
    color: #fff;
    padding: 9px 12px;
    font-size: 9px;
    letter-spacing: .14em;
    text-transform: uppercase
}

.gallery-tall {
    grid-row: span 2
}

.gallery-wide {
    grid-column: 2
}

.services {
    background: var(--ink);
    color: #eee8df
}

.services-title {
    top: 120px;
    align-self: flex-start
}

.services-title p:not(.eyebrow) {
    color: #aaa39a;
    max-width: 430px;
    line-height: 1.8
}

.text-link {
    display: inline-block;
    background: none;
    border: 0;
    border-bottom: 1px solid #9d8150;
    color: #d4b87f;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 10px;
    padding: 0 0 7px;
    margin-top: 20px
}

.text-link i {
    margin-left: 20px
}

.text-link.dark {
    color: #705831
}

.service-item {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 20px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .14)
}

.service-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .14)
}

.service-number {
    color: #9d8150;
    font-family: "Cormorant Garamond", serif
}

.service-item h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 32px;
    font-weight: 400
}

.service-item p {
    color: #a9a29a;
    margin: 8px 0
}

.service-item small {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .17em;
    color: #777
}

.price {
    font-family: "Cormorant Garamond", serif;
    font-size: 26px;
    color: #d6bd8b
}

.artist {
    background: var(--cream)
}

.artist-image {
    position: relative;
    padding-right: 42px
}

.artist-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    filter: saturate(.72)
}

.artist-stamp {
    position: absolute;
    right: 0;
    bottom: 50px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gold);
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    letter-spacing: .14em;
    font-size: 14px
}

.lead-copy {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    line-height: 1.25;
    margin: 30px 0 18px
}

.artist p:not(.eyebrow):not(.lead-copy) {
    color: var(--muted);
    line-height: 1.9
}

.signature {
    font-family: "Cormorant Garamond", serif;
    font-size: 44px;
    font-style: italic;
    color: #8d7347;
    margin-top: 20px
}

.quote-section {
    background: #b9a78d;
    padding: 100px 0;
    color: #fff
}

.stars {
    letter-spacing: .5em;
    font-size: 9px;
    margin-bottom: 30px
}

.quote-section blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1.15;
    max-width: 980px;
    margin: 0 auto 25px
}

.quote-section p {
    text-transform: uppercase;
    letter-spacing: .2em;
    font-size: 10px
}

.booking {
    background: #201d19;
    color: #f1ebe2
}

.booking-copy {
    color: #aaa29a;
    line-height: 1.8;
    max-width: 430px;
    margin: 25px 0 40px
}

.booking-details p {
    display: flex;
    gap: 17px;
    color: #938d85;
    margin: 24px 0;
    font-size: 13px;
    line-height: 1.7
}

.booking-details i {
    color: #c5a66f;
    font-size: 17px
}

.booking-details strong {
    color: #e3dcd2;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 10px
}

.booking-form {
    background: #292520;
    padding: 45px
}

.booking-form label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: #b7aea3;
    margin-bottom: 10px
}

.booking-form label span {
    color: #6e6861
}

.form-control,
.form-select {
    border: 0;
    border-bottom: 1px solid #5b544d;
    border-radius: 0;
    background: transparent;
    color: #fff;
    padding: 9px 0 12px
}

.form-control:focus,
.form-select:focus {
    background: transparent;
    color: #fff;
    border-color: #bf9d62;
    box-shadow: none
}

.form-select {
    color: #aaa
}

.form-select option {
    color: #222
}

.form-control::placeholder {
    color: #706a63
}

.form-note {
    text-align: center;
    color: #726c65;
    font-size: 10px;
    margin: 15px 0 0
}

.invalid-feedback {
    font-size: 10px
}

.booking-success {
    display: none;
    background: #292520;
    padding: 60px 45px;
    text-align: center
}

.booking-success i {
    font-size: 42px;
    color: #c4a66e
}

.booking-success h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 46px;
    margin: 18px 0 10px
}

.booking-success p {
    color: #aaa29f;
    line-height: 1.8
}

.booking-success .text-link {
    cursor: pointer
}

footer {
    background: #13110f;
    color: #fff;
    padding: 65px 0 25px
}

.footer-top,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start
}

.footer-top {
    padding-bottom: 55px
}

.footer-top p {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: #8d867e;
    line-height: 1.2
}

.footer-bottom {
    border-top: 1px solid #332f2a;
    padding-top: 22px;
    color: #69645e;
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: .15em
}

.footer-bottom a {
    color: #89827a;
    text-decoration: none;
    margin-left: 24px
}

.gallery-modal .modal-content {
    background: #171512;
    border: 0;
    border-radius: 0;
    padding: 14px;
    position: relative
}

.gallery-modal img {
    max-height: 80vh;
    object-fit: contain
}

.gallery-modal p {
    color: #fff;
    margin: 12px 0 0;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px
}

.gallery-modal .btn-close {
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 2
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    animation: reveal .8s forwards
}

.reveal:nth-child(2) {
    animation-delay: .12s
}

.reveal:nth-child(3) {
    animation-delay: .24s
}

.reveal:nth-child(4) {
    animation-delay: .36s
}

@keyframes reveal {
    to {
        opacity: 1;
        transform: none
    }
}

@media(max-width:991.98px) {
    .navbar-collapse {
        background: #1a1714;
        padding: 20px;
        margin-top: 12px
    }

    .section-padding {
        padding: 85px 0
    }

    .services-title {
        position: static !important
    }

    .artist-image img {
        height: 550px
    }

    .booking-form {
        padding: 30px
    }
}

@media(max-width:767.98px) {
    .hero {
        min-height: 720px
    }

    .display-title {
        font-size: 64px
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 390px)
    }

    .gallery-tall,
    .gallery-wide {
        grid-row: auto;
        grid-column: auto
    }

    .service-item {
        grid-template-columns: 30px 1fr
    }

    .service-item .price {
        grid-column: 2
    }

    .artist-image {
        padding-right: 24px
    }

    .artist-image img {
        height: 480px
    }

    .section-padding {
        padding: 70px 0
    }

    .footer-top,
    .footer-bottom {
        display: block
    }

    .footer-top p {
        margin-top: 30px
    }

    .footer-bottom div {
        margin-top: 18px
    }

    .footer-bottom a {
        margin: 0 18px 0 0
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .marquee-track,
    .reveal {
        animation: none
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .gallery-card img {
        transition: none
    }
}

/* Review carousel: duplicate a .carousel-item and add a matching indicator for more reviews. */
.quote-section {
    padding: 0
}

.review-slide {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 110px 105px
}

.quote-section .carousel-indicators {
    bottom: 38px;
    margin-bottom: 0;
    gap: 8px
}

.quote-section .carousel-indicators [data-bs-target] {
    width: 28px;
    height: 1px;
    margin: 0;
    border: 0;
    background: #fff;
    opacity: .4
}

.quote-section .carousel-indicators .active {
    opacity: 1
}

.quote-section .carousel-control-prev,
.quote-section .carousel-control-next {
    width: 8%;
    opacity: 1
}

.review-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: .25s
}

.carousel-control-prev:hover .review-arrow,
.carousel-control-next:hover .review-arrow {
    background: #fff;
    color: var(--ink)
}

@media(max-width:767.98px) {
    .review-slide {
        min-height: 500px;
        padding: 75px 42px 100px
    }

    .quote-section blockquote {
        font-size: 36px
    }

    .quote-section .carousel-control-prev,
    .quote-section .carousel-control-next {
        width: 13%
    }

    .review-arrow {
        width: 34px;
        height: 34px
    }
}

/* Gold picture frame layered over the hero photo. */
.hero-photo-frame {
    position: absolute;
    z-index: 1;
    top: 9%;
    right: 1.5%;
    bottom: 9%;
    width: 44%;
    border: 3px solid var(--gold);
    pointer-events: none
}

.hero-content {
    z-index: 2
}

@media(max-width:991.98px) {
    .hero-photo-frame {
        top: 13%;
        right: 4%;
        bottom: 13%;
        width: 48%
    }
}

@media(max-width:767.98px) {
    .hero-photo-frame {
        top: auto;
        right: 20px;
        bottom: 72px;
        width: 44%;
        height: 34%;
        border-width: 2px;
        opacity: .85
    }
}