:root {
    --ink: #242018;
    --sand: #e8dfd1;
    --cream: #f6f1e9;
    --clay: #ad6c57;
    --light: #fcfaf6
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: 'DM Sans',Arial,sans-serif
}

a {
    color: inherit
}

.t3-overline {
    margin: 0 0 18px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .18em
}

.t3-logo {
    font-family: 'Playfair Display',serif;
    font-size: 21px;
    font-weight: 600
}

.t3-button {
    padding: 16px 25px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: white;
    font: 600 12px 'DM Sans';
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer
}

    .t3-button span {
        margin-left: 16px;
        font-size: 18px
    }

.t3-button-small {
    padding: 11px 17px;
    font-size: 10px
}

.t3-text-link {
    display: inline-block;
    border: 0;
    border-bottom: 1px solid currentColor;
    padding: 0 0 6px;
    background: none;
    font: 600 11px 'DM Sans';
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer
}

.t3-hero {
    position: relative;
    min-height: 720px;
    padding: 28px clamp(24px,6vw,100px);
    color: white;
    background: linear-gradient(90deg,rgba(25,20,15,.78),rgba(25,20,15,.14)),var(--hero-image) center/cover
}

.t3-nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px clamp(24px,6vw,100px);
    color: white;
    background: rgba(36,32,24,.94);
    box-shadow: 0 1px 0 rgba(255,255,255,.14);
    backdrop-filter: blur(10px)
}

.t3-nav-links {
    display: flex;
    gap: 30px
}

    .t3-nav-links a {
        font-size: 11px;
        letter-spacing: .1em;
        text-decoration: none;
        text-transform: uppercase
    }

.t3-nav .t3-button {
    border-color: white;
    background: var(--clay)
}

.t3-nav-actions {
    display: flex;
    align-items: center;
    gap: 14px
}

.t3-client-access {
    border: 1px solid rgba(255, 255, 255, .7);
    padding: 10px 13px;
    color: white;
    font: 600 10px 'DM Sans', Arial, sans-serif;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.t3-client-access:hover {
    background: rgba(255, 255, 255, .12);
    color: white;
}

.t3-theme-selector {
    position: relative
}

.t3-theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 0;
    padding: 7px;
    background: transparent;
    color: white;
    font: 500 10px 'DM Sans';
    letter-spacing: .07em;
    text-transform: uppercase;
    cursor: pointer
}

.t3-theme-dots {
    display: flex
}

    .t3-theme-dots i {
        display: block;
        width: 10px;
        height: 10px;
        margin-left: -2px;
        border: 1px solid rgba(255,255,255,.65);
        border-radius: 50%;
        background: #24342c
    }

        .t3-theme-dots i:nth-child(2) {
            background: #dce5d8
        }

        .t3-theme-dots i:nth-child(3) {
            background: #f4f6ef
        }

        .t3-theme-dots i:nth-child(4) {
            background: #6f8d78
        }

        .t3-theme-dots i:nth-child(5) {
            background: #fcfdf9
        }

.t3-theme-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    display: none;
    width: 210px;
    padding: 6px;
    background: var(--light);
    box-shadow: 0 12px 35px rgba(0,0,0,.25)
}

.t3-theme-selector.is-open .t3-theme-menu {
    display: block
}

.t3-theme-option {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    border: 0;
    padding: 11px;
    background: transparent;
    color: var(--ink);
    font: 500 12px 'DM Sans';
    text-align: left;
    cursor: pointer
}

    .t3-theme-option:hover, .t3-theme-option.is-selected {
        background: var(--sand)
    }

    .t3-theme-option .t3-theme-dots i {
        width: 12px;
        height: 12px;
        border-color: rgba(0,0,0,.12)
    }

.t3-hero-content {
    margin-top: 145px;
    max-width: 1199px;
}

.t3-hero h1, .t3-intro h2, .t3-services h2, .t3-reviews h2, .t3-contact h2, .t3-visit h2 {
    margin: 0;
    font: 500 clamp(54px,7vw,94px)/.94 'Playfair Display',serif
}

    .t3-hero h1 em, .t3-intro h2 em, .t3-services h2 em, .t3-reviews h2 em, .t3-contact h2 em, .t3-visit h2 em {
        font-weight: 500
    }

.t3-lead {
    max-width: 600px;
    margin: 28px 0;
    font-size: 17px;
    line-height: 1.5
}

.t3-hero-actions {
    display: flex;
    align-items: center;
    gap: 28px
}

.t3-hero-bottom {
    position: absolute;
    right: clamp(24px,6vw,100px);
    bottom: 30px;
    left: clamp(24px,6vw,100px);
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.t3-scroll {
    opacity: .75
}

.t3-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12vw;
    max-width: 1180px;
    margin: auto;
    padding: 140px 24px
}

.t3-intro-copy {
    padding-top: 58px;
    font-size: 18px;
    line-height: 1.6
}

    .t3-intro-copy p {
        margin: 0 0 22px
    }

.t3-services {
    padding: 125px max(24px,calc((100vw - 1132px)/2));
    background: var(--sand)
}

.t3-services-heading {
    display: flex;
    justify-content: space-between;
    margin-bottom: 65px
}

.t3-categories {
    border-top: 1px solid rgba(36,32,24,.4)
}

.t3-category {
    border-bottom: 1px solid rgba(36,32,24,.4)
}

    .t3-category summary {
        display: grid;
        grid-template-columns: 1fr 60px 30px;
        padding: 26px 0;
        list-style: none;
        font: 500 30px 'Playfair Display',serif;
        cursor: pointer
    }

        .t3-category summary::-webkit-details-marker {
            display: none
        }

.t3-category-count {
    font: 11px 'DM Sans';
    letter-spacing: .1em
}

.t3-plus {
    font: 26px 'DM Sans';
    transition: .2s
}

.t3-category[open] .t3-plus {
    transform: rotate(45deg)
}

.t3-service-list {
    padding-bottom: 18px
}

.t3-service {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 20px 0 24px;
    border-top: 1px solid rgba(36,32,24,.16)
}

    .t3-service h3 {
        margin: 0;
        font-size: 16px
    }

    .t3-service p {
        margin: 7px 0 0;
        color: #665e54;
        font-size: 13px
    }

.t3-service-book {
    display: flex;
    min-width: 130px;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    font-size: 14px
}

    .t3-service-book button {
        border: 0;
        padding: 0;
        background: none;
        color: var(--clay);
        font: 600 11px 'DM Sans';
        letter-spacing: .08em;
        text-transform: uppercase;
        cursor: pointer
    }

.t3-reviews {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 620px;
    background: var(--ink);
    color: var(--light)
}

.t3-review-heading {
    padding: 110px clamp(24px,7vw,110px)
}

.t3-score {
    display: flex;
    flex-direction: column;
    margin-top: 65px
}

    .t3-score strong {
        font: 500 48px 'Playfair Display',serif
    }

    .t3-score span, .t3-review > span {
        color: #e8bb74;
        letter-spacing: 4px
    }

    .t3-score small {
        margin-top: 8px
    }

.t3-review-list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px clamp(24px,7vw,110px);
    background: #312c23
}

.t3-review-pagination {
    grid-column: 2;
    display: flex;
    justify-content: flex-end;
    gap: 6px;
    padding: 18px;
    background: var(--review-list-bg);
}

.t3-review-pagination button {
    min-width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, .4);
    background: transparent;
    color: white;
    font: 500 11px 'DM Sans', Arial, sans-serif;
    cursor: pointer;
}

.t3-review-pagination button:hover,
.t3-review-pagination button.is-active {
    border-color: var(--clay);
    background: var(--clay);
}

.t3-review-pagination button:disabled {
    opacity: .35;
    cursor: default;
}

.t3-review {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.24)
}

    .t3-review p {
        margin: 12px 0;
        font: 500 19px/1.35 'Playfair Display',serif
    }

    .t3-review footer {
        font-size: 12px
    }

.t3-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11vw;
    max-width: 1180px;
    margin: auto;
    padding: 130px 24px
}

.t3-contact-info > p:not(.t3-overline) {
    line-height: 1.7
}

.t3-contact-info .t3-button {
    margin-top: 20px
}

.t3-form {
    padding: 7px 0
}

    .t3-form h3 {
        margin: 0 0 35px;
        font: 500 36px 'Playfair Display',serif
    }

    .t3-form label {
        display: block;
        margin-top: 17px;
        font-size: 11px;
        letter-spacing: .09em;
        text-transform: uppercase
    }

    .t3-form input:not([type=checkbox]), .t3-form textarea {
        width: 100%;
        padding: 10px 0;
        border: 0;
        border-bottom: 1px solid #a79d8d;
        background: transparent;
        font: inherit
    }

    .t3-form .t3-privacy {
        display: flex;
        gap: 8px;
        align-items: flex-start;
        font-size: 10px;
        text-transform: none;
        letter-spacing: 0
    }

    .t3-form .t3-text-link {
        margin-top: 25px
    }

#contactFeedback[data-status=success] {
    color: #27743d
}

#contactFeedback[data-status=error] {
    color: #b53127
}

.t3-visit {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    background: var(--sand)
}

.t3-visit-hours {
    padding: 95px max(24px,calc((100vw - 1132px)/2));
    padding-right: 70px
}

.t3-hours-list {
    margin-top: 40px;
    border-top: 1px solid rgba(36,32,24,.35)
}

.t3-upcoming-hours {
    margin-top: 34px;
    border-top: 1px solid rgba(36, 32, 24, .15);
    padding-top: 28px;
}

.t3-upcoming-hours .t3-overline {
    margin-bottom: 8px;
}

.t3-upcoming-hours-dates {
    margin: 0 0 18px;
    font-size: 12px;
}

    .t3-hours-list div {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        padding: 11px 0;
        border-bottom: 1px solid rgba(36,32,24,.2);
        font-size: 13px
    }

    .t3-hours-list strong {
        font-weight: 500;
        text-align: right
    }

.t3-closed {
    color: #81796d
}

.t3-map {
    min-height: 520px
}

    .t3-map iframe {
        width: 100%;
        height: 100%;
        border: 0
    }

.t3-footer {
    display: flex;
    padding: 30px max(24px,calc((100vw - 1132px)/2));
    background: var(--ink);
    color: white;
    font-size: 11px
}

.t3-footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    text-decoration: none;
}

.t3-footer-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.t3-footer-name {
    font: 600 15px 'DM Sans', Arial, sans-serif;
    letter-spacing: .02em;
}

.t3-footer-tagline {
    color: rgba(255, 255, 255, .7);
}

dialog {
    width: min(850px,96vw);
    height: min(90vh,800px);
    padding: 0;
    border: 0
}

    dialog::backdrop {
        background: rgba(0,0,0,.65)
    }

.t3-close {
    float: right;
    margin: 10px;
    border: 0;
    background: white;
    font-size: 24px;
    cursor: pointer
}

.t3-non-reservable-overlay {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    background: rgba(18, 16, 20, .48);
}

.t3-non-reservable-overlay[hidden] {
    display: none;
}

.t3-non-reservable-card {
    position: relative;
    width: min(390px, 100%);
    padding: 34px 46px 30px;
    border-radius: 14px;
    color: #273650;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .28);
    font-family: Arial, sans-serif;
    text-align: center;
}

.t3-non-reservable-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    margin-bottom: 14px;
    border-radius: 50%;
    color: #fff;
    background: var(--clay);
    font-size: 16px;
}

.t3-non-reservable-close {
    position: absolute;
    top: 10px;
    right: 13px;
    margin: 0;
    padding: 0;
    border: 0;
    color: #667085;
    background: transparent;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
}

.t3-non-reservable-card p {
    margin: 0 0 12px;
    font-size: 17px;
    line-height: 1.55;
}

.t3-non-reservable-phone {
    color: var(--clay);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
}

#reservationFrame {
    width: 100%;
    height: calc(100% - 45px);
    border: 0
}

@media(max-width:760px) {
    .t3-nav-links, .t3-scroll {
        display: none
    }

    .t3-hero {
        min-height: 650px
    }

    .t3-hero-content {
        margin-top: 150px
    }

    .t3-hero-bottom {
        gap: 10px
    }

    .t3-intro, .t3-reviews, .t3-contact, .t3-visit {
        grid-template-columns: 1fr;
        gap: 45px
    }

    .t3-intro {
        padding-top: 85px;
        padding-bottom: 85px
    }

    .t3-intro-copy {
        padding-top: 0
    }

    .t3-services {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .t3-services-heading {
        display: block
    }

    .t3-category summary {
        font-size: 25px
    }

    .t3-review-heading, .t3-review-list {
        padding-top: 75px;
        padding-bottom: 75px
    }

    .t3-review-pagination {
        grid-column: 1;
        padding-right: 24px;
        padding-left: 24px;
    }

    .t3-contact {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .t3-visit {
        gap: 0
    }

    .t3-visit-hours {
        padding: 75px 24px
    }

    .t3-map {
        min-height: 360px
    }

    .t3-footer {
        flex-direction: column;
        gap: 15px
    }

    .t3-footer-brand {
        flex-wrap: wrap;
    }

    .t3-footer-tagline {
        width: 100%;
    }
}
