/* ==========================================================================
   TAKE A SEAT FREE
   Stage 01: Utility Bar + Header + Hero
   ========================================================================== */


/* ==========================================================================
   01. ROOT
   ========================================================================== */

:root {
    --color-ink: #25282A;
    --color-charcoal: #233243;
    --color-paper: #F6F2EA;
    --color-paper-light: #FCFAF6;
    --color-walnut: #6E4F3A;
    --color-walnut-dark: #233243;
    --color-olive: #71808A;
    --color-olive-dark: #233243;
    --color-clay: #A34F43;
    --color-brass: #C79A45;
    --color-white: #ffffff;

    --font-display: "Newsreader", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;

    --container-width: 1440px;
    --container-gutter: clamp(1.25rem, 4vw, 4rem);

    --header-height: 5.75rem;

    --transition-fast: 180ms ease;
    --transition-medium: 280ms ease;
}


/* ==========================================================================
   02. RESET
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    background: var(--color-paper-light);
    color: var(--color-ink);

    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    color: inherit;
}


/* ==========================================================================
   03. GLOBAL UTILITIES
   ========================================================================== */

.site-container {
    width: min(
        calc(100% - (var(--container-gutter) * 2)),
        var(--container-width)
    );

    margin-inline: auto;
}

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}

.skip-link {
    position: fixed;
    top: 1rem;
    left: 1rem;

    z-index: 9999;

    padding: 0.85rem 1.2rem;

    background: var(--color-white);
    color: var(--color-ink);

    border: 2px solid var(--color-ink);

    font-size: 0.9rem;
    font-weight: 700;

    transform: translateY(-200%);
    transition: transform var(--transition-fast);
}

.skip-link:focus {
    transform: translateY(0);
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--color-brass);
    outline-offset: 4px;
}


/* ==========================================================================
   04. UTILITY BAR
   ========================================================================== */

.utility-bar {
    position: relative;
    z-index: 30;

    background: var(--color-walnut-dark);
    color: rgba(255, 255, 255, 0.88);
}

.utility-bar__inner {
    min-height: 2.55rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}

.utility-bar__highlights,
.utility-bar__contact {
    display: flex;
    align-items: center;

    gap: 0;
}

.utility-bar__highlights span,
.utility-bar__contact a {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 2.55rem;

    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1;

    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.utility-bar__highlights span + span,
.utility-bar__contact a + a {
    margin-left: 1.3rem;
    padding-left: 1.3rem;
}

.utility-bar__highlights span + span::before,
.utility-bar__contact a + a::before {
    content: "";

    position: absolute;
    left: 0;
    top: 50%;

    width: 1px;
    height: 0.9rem;

    background: rgba(255, 255, 255, 0.28);

    transform: translateY(-50%);
}

.utility-bar__contact a {
    transition:
        color var(--transition-fast),
        opacity var(--transition-fast);
}

.utility-bar__contact a:hover {
    color: var(--color-white);
}


/* ==========================================================================
   05. SITE HEADER
   ========================================================================== */

.site-header {
    position: relative;
    z-index: 25;

    background: rgba(249, 245, 237, 0.97);
    color: var(--color-ink);

    border-bottom: 1px solid rgba(36, 35, 31, 0.12);
}

.site-header__inner {
    min-height: var(--header-height);

    display: grid;
    grid-template-columns:
        minmax(12rem, auto)
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: clamp(1.5rem, 3vw, 3.5rem);
}


/* ==========================================================================
   06. BRAND
   ========================================================================== */

.site-brand {
    width: fit-content;

    display: inline-flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 0.05rem;
}

.site-brand__name {
    color: var(--color-walnut-dark);

    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 0.96;

    letter-spacing: -0.045em;
}

.site-brand__name span {
    position: relative;
    top: -0.35em;

    margin-left: 0.08em;

    font-family: var(--font-body);
    font-size: 0.34em;
    font-weight: 700;

    letter-spacing: 0;
}

.site-brand__descriptor {
    margin-top: 0.33rem;

    color: var(--color-olive-dark);

    font-size: 0.58rem;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.19em;
    text-transform: uppercase;
}


/* ==========================================================================
   07. PRIMARY NAV
   ========================================================================== */

.primary-nav {
    justify-self: center;
}

.primary-nav__list {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: clamp(1.2rem, 2.4vw, 2.5rem);

    margin: 0;
    padding: 0;

    list-style: none;
}

.primary-nav__list a {
    position: relative;

    display: inline-flex;
    align-items: center;

    min-height: 2.7rem;

    color: var(--color-charcoal);

    font-size: 0.78rem;
    font-weight: 700;

    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.primary-nav__list a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0.28rem;

    width: 100%;
    height: 2px;

    background: var(--color-clay);

    transform: scaleX(0);
    transform-origin: right center;

    transition: transform var(--transition-medium);
}

.primary-nav__list a:hover::after,
.primary-nav__list a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left center;
}


/* ==========================================================================
   08. HEADER CTA
   ========================================================================== */

.header-cta {
    justify-self: end;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 3rem;

    padding: 0.8rem 1.25rem;

    background: var(--color-olive-dark);
    color: var(--color-white);

    border: 1px solid var(--color-olive-dark);

    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.075em;
    text-transform: uppercase;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.header-cta:hover {
    background: var(--color-walnut-dark);
    border-color: var(--color-walnut-dark);

    transform: translateY(-1px);
}


/* ==========================================================================
   09. MOBILE NAV BUTTON
   ========================================================================== */

.nav-toggle {
    display: none;

    width: 3rem;
    height: 3rem;

    padding: 0;

    align-items: center;
    justify-content: center;
    flex-direction: column;

    gap: 0.32rem;

    background: transparent;

    border: 1px solid rgba(36, 35, 31, 0.22);

    cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
    width: 1.15rem;
    height: 2px;

    display: block;

    background: var(--color-ink);
}


/* ==========================================================================
   10. HERO
   ========================================================================== */

.hero {
    position: relative;

    min-height: clamp(42rem, 78vh, 59rem);

    display: grid;
    align-items: stretch;

    overflow: hidden;

    background: var(--color-walnut-dark);
}

.hero__media {
    position: absolute;
    inset: 0;

    z-index: 0;
}

.hero__image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    transform: scale(1.002);
}

.hero__shade {
    position: absolute;
    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(27, 20, 16, 0.86) 0%,
            rgba(27, 20, 16, 0.72) 28%,
            rgba(27, 20, 16, 0.39) 52%,
            rgba(27, 20, 16, 0.08) 75%,
            rgba(27, 20, 16, 0.04) 100%
        ),
        linear-gradient(
            0deg,
            rgba(20, 15, 12, 0.38) 0%,
            rgba(20, 15, 12, 0) 34%
        );
}

.hero__inner {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    padding-top: clamp(4rem, 8vh, 7rem);
    padding-bottom: clamp(4rem, 8vh, 7rem);
}

.hero__content {
    width: min(100%, 43rem);

    color: var(--color-white);
}

.hero__eyebrow {
    width: fit-content;

    margin: 0 0 1.25rem;

    padding-bottom: 0.65rem;

    border-bottom: 1px solid rgba(255, 255, 255, 0.48);

    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 9ch;

    margin: 0;

    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 7.35rem);
    font-weight: 500;
    line-height: 0.84;

    letter-spacing: -0.052em;
}

.hero h1 span {
    display: block;

    color: #C79A45;

    font-style: italic;
    font-weight: 400;
}

.hero__intro {
    max-width: 37rem;

    margin: clamp(1.7rem, 3vw, 2.4rem) 0 0;

    color: rgba(255, 255, 255, 0.9);

    font-size: clamp(1rem, 1.35vw, 1.17rem);
    line-height: 1.72;
}

.hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0.85rem;

    margin-top: 2rem;
}


/* ==========================================================================
   11. BUTTONS
   ========================================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 3.45rem;

    padding: 0.95rem 1.5rem;

    border: 1px solid transparent;

    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;

    letter-spacing: 0.085em;
    text-transform: uppercase;

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

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

.button--primary {
    background: var(--color-paper);
    color: var(--color-walnut-dark);

    border-color: var(--color-paper);
}

.button--primary:hover {
    background: var(--color-white);
    border-color: var(--color-white);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);

    border-color: rgba(255, 255, 255, 0.52);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.8);
}


/* ==========================================================================
   12. HERO NOTE
   ========================================================================== */

.hero__note {
    position: relative;

    max-width: 33rem;

    margin: 2.25rem 0 0;
    padding-left: 1rem;

    color: rgba(255, 255, 255, 0.7);

    border-left: 2px solid var(--color-brass);

    font-family: var(--font-display);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.5;
}


/* ==========================================================================
   13. RESPONSIVE
   ========================================================================== */

@media (max-width: 1120px) {

    .site-header__inner {
        grid-template-columns:
            minmax(11rem, auto)
            minmax(0, 1fr)
            auto;

        gap: 1.35rem;
    }

    .primary-nav__list {
        gap: 1.25rem;
    }

    .primary-nav__list a {
        font-size: 0.7rem;
    }

    .header-cta {
        padding-inline: 1rem;

        font-size: 0.66rem;
    }

    .hero h1 {
        font-size: clamp(4rem, 8vw, 6.4rem);
    }

}


@media (max-width: 940px) {

    .utility-bar__highlights span:nth-child(2) {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
    }

    .primary-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;

        justify-self: end;
    }

    .hero {
        min-height: 44rem;
    }

    .hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(27, 20, 16, 0.84) 0%,
                rgba(27, 20, 16, 0.67) 46%,
                rgba(27, 20, 16, 0.28) 78%,
                rgba(27, 20, 16, 0.12) 100%
            ),
            linear-gradient(
                0deg,
                rgba(20, 15, 12, 0.4) 0%,
                rgba(20, 15, 12, 0) 40%
            );
    }

    .hero__content {
        width: min(100%, 38rem);
    }

}


@media (max-width: 720px) {

    .utility-bar__inner {
        min-height: 2.75rem;
    }

    .utility-bar__highlights span {
        font-size: 0.64rem;
    }

    .utility-bar__highlights span:not(:first-child) {
        display: none;
    }

    .utility-bar__contact a {
        font-size: 0.64rem;
    }

    .utility-bar__contact a:first-child {
        display: none;
    }

    .site-header__inner {
        min-height: 5.15rem;

        grid-template-columns: minmax(0, 1fr) auto;

        gap: 0.75rem;
    }

    .header-cta {
        display: none;
    }

    .site-brand__name {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 42rem;
    }

    .hero__image {
        object-position: 58% center;
    }

    .hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(27, 20, 16, 0.82) 0%,
                rgba(27, 20, 16, 0.66) 55%,
                rgba(27, 20, 16, 0.34) 100%
            ),
            linear-gradient(
                0deg,
                rgba(20, 15, 12, 0.48) 0%,
                rgba(20, 15, 12, 0.08) 50%,
                rgba(20, 15, 12, 0.08) 100%
            );
    }

    .hero__inner {
        align-items: end;

        padding-top: 5rem;
        padding-bottom: 3.75rem;
    }

    .hero__eyebrow {
        margin-bottom: 1rem;

        font-size: 0.65rem;
    }

    .hero h1 {
        max-width: 8ch;

        font-size: clamp(3.45rem, 15vw, 5.25rem);
        line-height: 0.87;
    }

    .hero__intro {
        max-width: 31rem;

        margin-top: 1.45rem;

        font-size: 0.98rem;
        line-height: 1.65;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;

        max-width: 20rem;

        gap: 0.65rem;

        margin-top: 1.6rem;
    }

    .button {
        width: 100%;
    }

    .hero__note {
        max-width: 29rem;

        margin-top: 1.6rem;

        font-size: 0.88rem;
    }

}


@media (max-width: 460px) {

    :root {
        --container-gutter: 1rem;
    }

    .utility-bar__contact a {
        letter-spacing: 0.045em;
    }

    .site-brand__descriptor {
        font-size: 0.52rem;
    }

    .hero {
        min-height: 41rem;
    }

    .hero__inner {
        padding-bottom: 3rem;
    }

    .hero h1 {
        font-size: clamp(3.3rem, 16vw, 4.5rem);
    }

    .hero__note {
        display: none;
    }

}


/* ==========================================================================
   14. REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}

/* ==========================================================================
   15. SHOP BY ROOM
   Family Showroom Direction
   ========================================================================== */

.room-browser {
    position: relative;

    scroll-margin-top: 2rem;

    padding-block:
        clamp(4.5rem, 7vw, 7rem);

    background:
        var(--color-paper-light);

    color:
        var(--color-ink);
}

.room-browser__inner {
    position: relative;
}


/* ==========================================================================
   16. FRIENDLY SECTION INTRO
   ========================================================================== */

.room-browser__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(16rem, 0.8fr);

    gap:
        clamp(2rem, 5vw, 5rem);

    align-items: end;

    max-width: 72rem;

    margin-bottom:
        clamp(2.5rem, 4vw, 3.75rem);
}

.room-browser__heading-copy {
    min-width: 0;
}

.room-browser__eyebrow {
    width: fit-content;

    margin:
        0
        0
        0.8rem;

    padding:
        0.45rem
        0.8rem;

    background:
        var(--color-clay);

    color:
        #ffffff;

    border:
        1px
        solid
        rgba(69, 55, 44, 0.18);

    font-size:
        0.67rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.11em;

    text-transform:
        uppercase;

    transform:
        rotate(-1deg);
}

.room-browser__heading h2 {
    max-width:
        16ch;

    margin:
        0;

    color:
        var(--color-ink);

    font-family:
        var(--font-display);

    font-size:
        clamp(2.85rem, 5vw, 5rem);

    font-weight:
        500;

    line-height:
        0.98;

    letter-spacing:
        -0.04em;
}

.room-browser__intro {
    max-width:
        31rem;

    margin:
        0
        0
        0.3rem;

    color:
        rgba(45, 41, 36, 0.72);

    font-size:
        clamp(0.98rem, 1.15vw, 1.08rem);

    line-height:
        1.72;
}


/* ==========================================================================
   17. SHOWROOM LAYOUT
   ========================================================================== */

.room-browser__layout {
    display: grid;

    grid-template-columns:
        minmax(0, 1.52fr)
        minmax(19rem, 0.68fr);

    gap:
        clamp(2rem, 4vw, 4rem);

    align-items:
        start;
}


/* ==========================================================================
   18. LIVING ROOM FEATURE
   ========================================================================== */

.room-feature {
    min-width:
        0;

    display:
        block;

    color:
        inherit;
}

.room-feature__figure {
    position:
        relative;

    margin:
        0;

    aspect-ratio:
        4 / 3;

    overflow:
        hidden;

    background:
        var(--color-olive);

    border:
        1px
        solid
        rgba(45, 41, 36, 0.16);

    box-shadow:
        0 0.8rem 2rem rgba(67, 49, 35, 0.08);
}

.room-feature__image {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 450ms ease;
}

.room-feature:hover .room-feature__image {
    transform:
        scale(1.012);
}

.room-feature__content {
    padding:
        1.35rem
        0.1rem
        0;
}

.room-feature__title-row {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1rem;
}

.room-feature__label {
    margin:
        0;

    color:
        var(--color-ink);

    font-family:
        var(--font-display);

    font-size:
        clamp(2rem, 3vw, 3rem);

    font-weight:
        500;

    line-height:
        1;

    letter-spacing:
        -0.035em;
}

.room-feature__badge {
    flex:
        0 0 auto;

    padding:
        0.4rem
        0.65rem;

    background:
        var(--color-olive-dark);

    color:
        #ffffff;

    border-radius:
        999px;

    font-size:
        0.63rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.075em;

    text-transform:
        uppercase;

    transform:
        rotate(1.5deg);
}

.room-feature__copy {
    max-width:
        38rem;

    margin:
        0.65rem
        0
        0;

    color:
        rgba(45, 41, 36, 0.7);

    font-size:
        0.94rem;

    line-height:
        1.65;
}

.room-feature__link {
    display:
        inline-block;

    margin-top:
        1rem;

    padding-bottom:
        0.2rem;

    border-bottom:
        1px
        solid
        rgba(45, 41, 36, 0.45);

    color:
        var(--color-charcoal);

    font-size:
        0.76rem;

    font-weight:
        700;

    letter-spacing:
        0.06em;

    text-transform:
        uppercase;

    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.room-feature:hover .room-feature__link {
    color:
        var(--color-clay);

    border-color:
        var(--color-clay);
}


/* ==========================================================================
   19. OTHER SHOWROOM DEPARTMENTS
   ========================================================================== */

.room-browser__departments {
    padding:
        clamp(1.5rem, 2.5vw, 2rem);

    background:
        #ffffff;

    border:
        1px
        solid
        rgba(68, 53, 41, 0.17);

    box-shadow:
        0 0.65rem 1.6rem rgba(67, 49, 35, 0.055);
}

.room-browser__departments-title {
    margin:
        0
        0
        1.25rem;

    padding-bottom:
        0.85rem;

    border-bottom:
        2px
        solid
        var(--color-clay);

    color:
        var(--color-charcoal);

    font-size:
        0.73rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.085em;

    text-transform:
        uppercase;
}

.room-link {
    display:
        block;

    padding:
        1.35rem
        0.2rem;

    border-bottom:
        1px
        solid
        rgba(68, 53, 41, 0.16);

    transition:
        padding-left var(--transition-fast),
        color var(--transition-fast);
}

.room-link:hover {
    padding-left:
        0.45rem;

    color:
        var(--color-clay);
}

.room-link__name {
    display:
        block;

    margin:
        0;

    font-family:
        var(--font-display);

    font-size:
        clamp(1.65rem, 2.2vw, 2.2rem);

    font-weight:
        500;

    line-height:
        1;

    letter-spacing:
        -0.03em;
}

.room-link__note {
    display:
        block;

    margin-top:
        0.4rem;

    color:
        rgba(45, 41, 36, 0.62);

    font-size:
        0.79rem;

    line-height:
        1.5;
}


/* ==========================================================================
   20. MATTRESS NOTE
   ========================================================================== */

.room-browser__aside {
    position:
        relative;

    margin-top:
        1.75rem;

    padding:
        1.2rem
        1.25rem;

    background:
        rgba(113, 128, 138, 0.16);

    border:
        1px
        solid
        rgba(89, 67, 49, 0.14);

    transform:
        rotate(-0.6deg);
}

.room-browser__aside::before {
    content:
        "";

    position:
        absolute;

    top:
        -0.3rem;

    left:
        50%;

    width:
        3.2rem;

    height:
        0.65rem;

    background:
        rgba(191, 163, 116, 0.55);

    transform:
        translateX(-50%)
        rotate(1deg);
}

.room-browser__aside-title {
    margin:
        0;

    color:
        var(--color-charcoal);

    font-family:
        var(--font-display);

    font-size:
        1.15rem;

    font-weight:
        600;

    line-height:
        1.25;
}

.room-browser__aside p:not(.room-browser__aside-title) {
    margin:
        0.45rem
        0
        0;

    color:
        rgba(65, 49, 38, 0.75);

    font-size:
        0.83rem;

    line-height:
        1.55;
}


/* ==========================================================================
   21. RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {

    .room-browser__heading {
        grid-template-columns:
            1fr;

        gap:
            1.25rem;
    }

    .room-browser__intro {
        max-width:
            39rem;
    }

    .room-browser__layout {
        grid-template-columns:
            minmax(0, 1.2fr)
            minmax(17rem, 0.8fr);

        gap:
            2rem;
    }

}


@media (max-width: 760px) {

    .room-browser {
        padding-block:
            4.25rem;
    }

    .room-browser__layout {
        grid-template-columns:
            1fr;

        gap:
            2.75rem;
    }

    .room-feature__figure {
        aspect-ratio:
            4 / 3;
    }

    .room-browser__departments {
        max-width:
            none;
    }

}


@media (max-width: 520px) {

    .room-browser {
        padding-block:
            3.75rem;
    }

    .room-browser__heading {
        margin-bottom:
            2rem;
    }

    .room-browser__heading h2 {
        font-size:
            clamp(2.65rem, 12vw, 3.65rem);
    }

    .room-browser__intro {
        font-size:
            0.94rem;
    }

    .room-feature__figure {
        aspect-ratio:
            1 / 1;
    }

    .room-feature__title-row {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            0.7rem;
    }

    .room-feature__label {
        font-size:
            2rem;
    }

    .room-browser__departments {
        padding:
            1.3rem;
    }

    .room-link {
        padding-block:
            1.15rem;
    }

}

/* ==========================================================================
   22. SHOWROOM FLOOR RIGHT NOW
   ========================================================================== */

.showroom-now {
    position: relative;

    scroll-margin-top: 2rem;

    padding-block:
        clamp(4.75rem, 8vw, 7.5rem);

    background:
        var(--color-charcoal);

    color:
        var(--color-paper);

    border-top:
        1px
        solid
        rgba(246, 242, 234, 0.16);

    border-bottom:
        1px
        solid
        rgba(246, 242, 234, 0.16);
}

.showroom-now__inner {
    position: relative;
}


/* ==========================================================================
   23. SHOWROOM FLOOR HEADING
   ========================================================================== */

.showroom-now__heading {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(18rem, 0.62fr);

    gap:
        clamp(2rem, 5vw, 5rem);

    align-items:
        end;

    margin-bottom:
        clamp(2.5rem, 5vw, 4rem);
}

.showroom-now__eyebrow {
    width:
        fit-content;

    margin:
        0
        0
        0.75rem;

    padding:
        0.45rem
        0.72rem;

    background:
        var(--color-brass);

    color:
        var(--color-charcoal);

    border:
        1px
        solid
        rgba(75, 58, 44, 0.18);

    font-size:
        0.66rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.1em;

    text-transform:
        uppercase;

    transform:
        rotate(0.8deg);
}

.showroom-now__heading h2 {
    max-width:
        16ch;

    margin:
        0;

    color:
        var(--color-paper-light);

    font-family:
        var(--font-display);

    font-size:
        clamp(2.65rem, 4vw, 4.35rem);

    font-weight:
        500;

    line-height:
        0.95;

    letter-spacing:
        -0.045em;
}

.showroom-now__intro {
    max-width:
        31rem;

    margin:
        0
        0
        0.25rem;

    color:
        rgba(246, 242, 234, 0.78);

    font-size:
        clamp(0.96rem, 1.15vw, 1.07rem);

    line-height:
        1.72;
}


/* ==========================================================================
   24. SHOWROOM PRODUCT
   ========================================================================== */

.showroom-product {
    display: grid;

    grid-template-columns:
        minmax(0, 1.34fr)
        minmax(21rem, 0.66fr);

    background:
        var(--color-paper-light);

    border:
        1px
        solid
        rgba(61, 53, 43, 0.18);

    box-shadow:
        0 0.7rem 1.8rem rgba(62, 52, 41, 0.07);
}


/* ==========================================================================
   25. SHOWROOM PRODUCT IMAGE
   ========================================================================== */

.showroom-product__figure {
    position:
        relative;

    min-width:
        0;

    margin:
        0;

    overflow:
        hidden;

    background:
        var(--color-olive);

    border-right:
        1px
        solid
        rgba(61, 53, 43, 0.16);
}

.showroom-product__image {
    width:
        100%;

    height:
        100%;

    min-height:
        clamp(28rem, 42vw, 40rem);

    display:
        block;

    object-fit:
        cover;

    transition:
        transform 500ms ease;
}

.showroom-product:hover .showroom-product__image {
    transform:
        scale(1.012);
}


/* ==========================================================================
   26. LITTLE STOCK TAG
   ========================================================================== */

.showroom-product__stock {
    position:
        absolute;

    top:
        1.1rem;

    left:
        1rem;

    padding:
        0.55rem
        0.75rem;

    background:
        var(--color-brass);

    color:
        var(--color-charcoal);

    border:
        1px
        solid
        rgba(69, 55, 43, 0.2);

    box-shadow:
        0 0.3rem 0.7rem rgba(44, 34, 25, 0.12);

    font-size:
        0.67rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

    transform:
        rotate(-2deg);
}


/* ==========================================================================
   27. PRODUCT DETAILS
   ========================================================================== */

.showroom-product__details {
    display:
        flex;

    flex-direction:
        column;

    justify-content:
        center;

    padding:
        clamp(2rem, 4vw, 4rem);
}

.showroom-product__topline {
    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        1rem;

    margin-bottom:
        1.25rem;

    padding-bottom:
        0.8rem;

    border-bottom:
        1px
        solid
        rgba(62, 52, 42, 0.18);
}

.showroom-product__category,
.showroom-product__availability {
    margin:
        0;

    font-size:
        0.66rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.09em;

    text-transform:
        uppercase;
}

.showroom-product__category {
    color:
        var(--color-charcoal);
}

.showroom-product__availability {
    padding:
        0.4rem
        0.55rem;

    background:
        var(--color-olive);

    color:
        #ffffff;

    border-radius:
        999px;
}

.showroom-product__details h3 {
    margin:
        0;

    color:
        var(--color-ink);

    font-family:
        var(--font-display);

    font-size:
        clamp(2.3rem, 4vw, 3.7rem);

    font-weight:
        500;

    line-height:
        0.98;

    letter-spacing:
        -0.04em;
}

.showroom-product__description {
    max-width:
        31rem;

    margin:
        1.1rem
        0
        0;

    color:
        rgba(45, 42, 36, 0.72);

    font-size:
        0.96rem;

    line-height:
        1.7;
}


/* ==========================================================================
   28. PRICE TAG AREA
   ========================================================================== */

.showroom-product__price-row {
    display: grid;

    grid-template-columns:
        auto
        minmax(0, 1fr);

    gap:
        1.5rem;

    align-items:
        center;

    margin-top:
        2rem;

    padding:
        1.2rem
        1.3rem;

    background:
        rgba(199, 154, 69, 0.24);

    border:
        1px
        solid
        rgba(79, 61, 43, 0.16);

    transform:
        rotate(-0.45deg);
}

.showroom-product__price-label {
    display:
        block;

    margin-bottom:
        0.2rem;

    color:
        var(--color-charcoal);

    font-size:
        0.62rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}

.showroom-product__price {
    display:
        block;

    color:
        var(--color-charcoal);

    font-family:
        var(--font-display);

    font-size:
        clamp(2.15rem, 3vw, 3rem);

    font-weight:
        600;

    line-height:
        0.95;
}

.showroom-product__note {
    margin:
        0;

    color:
        rgba(57, 44, 34, 0.72);

    font-size:
        0.79rem;

    line-height:
        1.5;
}


/* ==========================================================================
   29. PRODUCT ACTIONS
   ========================================================================== */

.showroom-product__actions {
    display:
        flex;

    align-items:
        center;

    flex-wrap:
        wrap;

    gap:
        1rem
        1.3rem;

    margin-top:
        1.75rem;
}

.showroom-product__button {
    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    min-height:
        3rem;

    padding:
        0.85rem
        1.15rem;

    background:
        var(--color-walnut-dark);

    color:
        #ffffff;

    border:
        1px
        solid
        var(--color-walnut-dark);

    font-size:
        0.7rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.07em;

    text-transform:
        uppercase;

    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        transform var(--transition-fast);
}

.showroom-product__button:hover {
    background:
        var(--color-olive-dark);

    border-color:
        var(--color-olive-dark);

    transform:
        translateY(-1px);
}

.showroom-product__text-link {
    padding-bottom:
        0.18rem;

    border-bottom:
        1px
        solid
        rgba(48, 42, 35, 0.45);

    color:
        var(--color-charcoal);

    font-size:
        0.75rem;

    font-weight:
        700;

    letter-spacing:
        0.045em;
}

.showroom-product__text-link:hover {
    color:
        var(--color-clay);

    border-color:
        var(--color-clay);
}


/* ==========================================================================
   30. DEMO NOTE
   ========================================================================== */

.showroom-now__fine-print {
    max-width:
        49rem;

    margin:
        1.15rem
        0
        0;

    color:
        rgba(246, 242, 234, 0.64);

    font-size:
        0.7rem;

    line-height:
        1.55;
}


/* ==========================================================================
   31. SHOWROOM FLOOR RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {

    .showroom-now__heading {
        grid-template-columns:
            1fr;

        gap:
            1.25rem;
    }

    .showroom-now__intro {
        max-width:
            39rem;
    }

    .showroom-product {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(19rem, 0.95fr);
    }

    .showroom-product__details {
        padding:
            2rem;
    }

}


@media (max-width: 760px) {

    .showroom-now {
        padding-block:
            4.25rem;
    }

    .showroom-product {
        grid-template-columns:
            1fr;
    }

    .showroom-product__figure {
        border-right:
            0;

        border-bottom:
            1px
            solid
            rgba(61, 53, 43, 0.16);
    }

    .showroom-product__image {
        min-height:
            0;

        aspect-ratio:
            4 / 3;
    }

    .showroom-product__details {
        padding:
            2rem;
    }

}


@media (max-width: 520px) {

    .showroom-now {
        padding-block:
            3.75rem;
    }

    .showroom-now__heading {
        margin-bottom:
            2rem;
    }

    .showroom-now__heading h2 {
        font-size:
            clamp(2.7rem, 12vw, 3.7rem);
    }

    .showroom-product__image {
        aspect-ratio:
            1 / 1;
    }

    .showroom-product__details {
        padding:
            1.45rem;
    }

    .showroom-product__topline {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            0.65rem;
    }

    .showroom-product__details h3 {
        font-size:
            2.45rem;
    }

    .showroom-product__price-row {
        grid-template-columns:
            1fr;

        gap:
            0.7rem;
    }

    .showroom-product__actions {
        align-items:
            stretch;

        flex-direction:
            column;
    }

    .showroom-product__button {
        width:
            100%;
    }

    .showroom-product__text-link {
        width:
            fit-content;
    }

}

/* ==========================================================================
   32. LOCAL BUSINESS HERO OVERRIDE
   ========================================================================== */

.hero {
    min-height:
        clamp(34rem, 67vh, 46rem);

    background:
        var(--color-charcoal);
}


.hero__shade {
    background:
        linear-gradient(
            90deg,
            rgba(18, 30, 43, 0.9) 0%,
            rgba(18, 30, 43, 0.78) 30%,
            rgba(18, 30, 43, 0.5) 52%,
            rgba(18, 30, 43, 0.18) 75%,
            rgba(18, 30, 43, 0.06) 100%
        ),
        linear-gradient(
            0deg,
            rgba(18, 30, 43, 0.3) 0%,
            rgba(18, 30, 43, 0) 45%
        );
}


.hero__inner {
    align-items:
        center;

    padding-top:
        clamp(2.75rem, 5vh, 4.5rem);

    padding-bottom:
        clamp(2.75rem, 5vh, 4.5rem);
}


.hero__content {
    width:
        min(100%, 46rem);
}


.hero__eyebrow {
    width:
        fit-content;

    margin:
        0
        0
        1rem;

    padding:
        0.48rem
        0.72rem;

    background:
        var(--color-clay);

    color:
        #ffffff;

    border:
        0;

    font-family:
        var(--font-body);

    font-size:
        0.68rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


.hero h1 {
    max-width:
        16ch;

    margin:
        0;

    font-family:
        var(--font-body);

    font-size:
        clamp(2.9rem, 4.5vw, 4.8rem);

    font-weight:
        700;

    line-height:
        0.98;

    letter-spacing:
        -0.045em;
}


.hero h1 span {
    display:
        block;

    margin-top:
        0.16em;

    color:
        var(--color-brass);

    font-family:
        var(--font-body);

    font-size:
        0.76em;

    font-style:
        normal;

    font-weight:
        700;

    line-height:
        1.04;

    letter-spacing:
        -0.035em;
}


.hero__intro {
    max-width:
        35rem;

    margin:
        1.4rem
        0
        0;

    color:
        rgba(255, 255, 255, 0.91);

    font-size:
        clamp(0.96rem, 1.05vw, 1.05rem);

    line-height:
        1.58;
}


.hero__actions {
    gap:
        0.75rem;

    margin-top:
        1.55rem;
}


.hero .button {
    min-height:
        3.15rem;

    padding:
        0.82rem
        1.2rem;

    font-size:
        0.69rem;

    letter-spacing:
        0.07em;
}


.hero .button--primary {
    background:
        var(--color-clay);

    color:
        #ffffff;

    border-color:
        var(--color-clay);
}


.hero .button--primary:hover {
    background:
        var(--color-clay);

    border-color:
        var(--color-clay);

    filter:
        brightness(0.92);
}


.hero .button--secondary {
    background:
        rgba(255, 255, 255, 0.08);

    color:
        #ffffff;

    border-color:
        rgba(255, 255, 255, 0.7);
}


.hero .button--secondary:hover {
    background:
        rgba(255, 255, 255, 0.16);

    border-color:
        #ffffff;
}


.hero__note {
    max-width:
        31rem;

    margin:
        1.35rem
        0
        0;

    padding-left:
        0.85rem;

    color:
        rgba(255, 255, 255, 0.78);

    border-left:
        3px
        solid
        var(--color-brass);

    font-family:
        var(--font-body);

    font-size:
        0.8rem;

    font-style:
        normal;

    font-weight:
        500;

    line-height:
        1.5;
}


/* ==========================================================================
   33. LOCAL BUSINESS HERO RESPONSIVE
   ========================================================================== */

@media (max-width: 940px) {

    .hero {
        min-height:
            38rem;
    }

    .hero__content {
        width:
            min(100%, 41rem);
    }

    .hero h1 {
        max-width:
            15ch;

        font-size:
            clamp(2.8rem, 6.5vw, 4.15rem);
    }

}


@media (max-width: 720px) {

    .hero {
        min-height:
            39rem;
    }

    .hero__image {
        object-position:
            56% center;
    }

    .hero__shade {
        background:
            linear-gradient(
                90deg,
                rgba(18, 30, 43, 0.9) 0%,
                rgba(18, 30, 43, 0.78) 55%,
                rgba(18, 30, 43, 0.46) 100%
            ),
            linear-gradient(
                0deg,
                rgba(18, 30, 43, 0.5) 0%,
                rgba(18, 30, 43, 0.12) 52%,
                rgba(18, 30, 43, 0.08) 100%
            );
    }

    .hero__inner {
        align-items:
            end;

        padding-top:
            4rem;

        padding-bottom:
            3rem;
    }

    .hero__eyebrow {
        margin-bottom:
            0.85rem;

        font-size:
            0.62rem;
    }

    .hero h1 {
        max-width:
            14ch;

        font-size:
            clamp(2.55rem, 11vw, 3.65rem);

        line-height:
            1;
    }

    .hero h1 span {
        font-size:
            0.72em;
    }

    .hero__intro {
        max-width:
            29rem;

        margin-top:
            1.15rem;

        font-size:
            0.94rem;

        line-height:
            1.55;
    }

    .hero__actions {
        max-width:
            21rem;

        margin-top:
            1.35rem;
    }

    .hero__note {
        max-width:
            28rem;

        margin-top:
            1.2rem;

        font-size:
            0.76rem;
    }

}


@media (max-width: 460px) {

    .hero {
        min-height:
            37rem;
    }

    .hero__inner {
        padding-bottom:
            2.5rem;
    }

    .hero h1 {
        max-width:
            13ch;

        font-size:
            clamp(2.35rem, 11vw, 3.1rem);
    }

    .hero__actions {
        width:
            100%;

        max-width:
            none;
    }

    .hero .button {
        width:
            100%;
    }

    .hero__note {
        display:
            block;
    }

}

/* ==========================================================================
   34. LOCAL FURNITURE DEPARTMENTS
   ========================================================================== */

.room-browser {
    padding-block:
        clamp(3.75rem, 6vw, 5.5rem);

    background:
        var(--color-paper-light);

    color:
        var(--color-ink);
}


.room-browser__heading {
    grid-template-columns:
        minmax(0, 1fr)
        minmax(17rem, 0.68fr);

    gap:
        clamp(2rem, 4vw, 4rem);

    align-items:
        end;

    max-width:
        none;

    margin-bottom:
        clamp(2.2rem, 4vw, 3.25rem);
}


.room-browser__eyebrow {
    margin:
        0
        0
        0.8rem;

    padding:
        0.48rem
        0.72rem;

    background:
        var(--color-clay);

    color:
        #ffffff;

    border:
        0;

    font-family:
        var(--font-body);

    font-size:
        0.66rem;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;

    transform:
        none;
}


.room-browser__heading h2 {
    max-width:
        20ch;

    margin:
        0;

    color:
        var(--color-ink);

    font-family:
        var(--font-body);

    font-size:
        clamp(2.3rem, 3.8vw, 3.75rem);

    font-weight:
        700;

    line-height:
        1.02;

    letter-spacing:
        -0.045em;
}


.room-browser__intro {
    max-width:
        31rem;

    margin:
        0
        0
        0.15rem;

    color:
        rgba(37, 40, 42, 0.72);

    font-size:
        clamp(0.94rem, 1vw, 1.03rem);

    line-height:
        1.62;
}


/* ==========================================================================
   35. FEATURED ROOM
   ========================================================================== */

.room-browser__layout {
    grid-template-columns:
        minmax(0, 1.42fr)
        minmax(19rem, 0.58fr);

    gap:
        clamp(1.75rem, 3.5vw, 3rem);

    align-items:
        start;
}


.room-feature {
    display:
        flex;

    flex-direction:
        column;

    min-width:
        0;
}


.room-feature__figure {
    aspect-ratio:
        16 / 10;

    border:
        1px
        solid
        rgba(35, 50, 67, 0.18);

    box-shadow:
        none;
}


.room-feature__content {
    padding:
        1.1rem
        0
        0;
}


.room-feature__title-row {
    align-items:
        center;

    gap:
        1rem;
}


.room-feature__label {
    color:
        var(--color-charcoal);

    font-family:
        var(--font-body);

    font-size:
        clamp(1.65rem, 2.25vw, 2.2rem);

    font-weight:
        700;

    line-height:
        1.05;

    letter-spacing:
        -0.035em;
}


.room-feature__badge {
    padding:
        0.42rem
        0.65rem;

    background:
        var(--color-brass);

    color:
        var(--color-charcoal);

    border-radius:
        0;

    font-family:
        var(--font-body);

    font-size:
        0.61rem;

    font-weight:
        700;

    letter-spacing:
        0.065em;

    transform:
        none;
}


.room-feature__copy {
    max-width:
        39rem;

    margin-top:
        0.55rem;

    color:
        rgba(37, 40, 42, 0.7);

    font-size:
        0.91rem;

    line-height:
        1.58;
}


.room-feature__link {
    margin-top:
        0.85rem;

    padding-bottom:
        0.15rem;

    color:
        var(--color-clay);

    border-color:
        var(--color-clay);

    font-size:
        0.69rem;

    letter-spacing:
        0.055em;
}


/* ==========================================================================
   36. SHOWROOM DEPARTMENT BOARD
   ========================================================================== */

.room-browser__departments {
    height:
        auto;

    padding:
        clamp(1.5rem, 2.5vw, 2rem);

    background:
        var(--color-charcoal);

    color:
        #ffffff;

    border:
        0;

    box-shadow:
        none;
}


.room-browser__departments-title {
    margin:
        0
        0
        0.85rem;

    padding-bottom:
        0.8rem;

    border-bottom:
        3px
        solid
        var(--color-brass);

    color:
        #ffffff;

    font-family:
        var(--font-body);

    font-size:
        0.68rem;

    font-weight:
        700;

    letter-spacing:
        0.08em;
}


.room-link {
    position:
        relative;

    display:
        block;

    padding:
        1.15rem
        0;

    color:
        #ffffff;

    border-bottom:
        1px
        solid
        rgba(255, 255, 255, 0.16);

    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}


.room-link::before {
    content:
        "";

    position:
        absolute;

    top:
        1.6rem;

    left:
        0;

    width:
        0.38rem;

    height:
        0.38rem;

    background:
        var(--color-clay);

    opacity:
        0;

    transition:
        opacity var(--transition-fast);
}


.room-link:hover {
    padding-left:
        0.85rem;

    color:
        #ffffff;
}


.room-link:hover::before {
    opacity:
        1;
}


.room-link__name {
    color:
        #ffffff;

    font-family:
        var(--font-body);

    font-size:
        clamp(1.35rem, 1.8vw, 1.7rem);

    font-weight:
        700;

    line-height:
        1.1;

    letter-spacing:
        -0.03em;
}


.room-link__note {
    margin-top:
        0.3rem;

    color:
        rgba(255, 255, 255, 0.68);

    font-size:
        0.76rem;

    line-height:
        1.45;
}


/* ==========================================================================
   37. MATTRESS NOTE
   ========================================================================== */

.room-browser__aside {
    margin-top:
        1.4rem;

    padding:
        1rem
        1.05rem;

    background:
        var(--color-brass);

    color:
        var(--color-charcoal);

    border:
        0;

    transform:
        none;
}


.room-browser__aside::before {
    display:
        none;
}


.room-browser__aside-title {
    color:
        var(--color-charcoal);

    font-family:
        var(--font-body);

    font-size:
        0.95rem;

    font-weight:
        700;

    line-height:
        1.3;
}


.room-browser__aside p:not(.room-browser__aside-title) {
    margin-top:
        0.35rem;

    color:
        rgba(35, 50, 67, 0.78);

    font-size:
        0.76rem;

    line-height:
        1.5;
}


/* ==========================================================================
   38. LOCAL FURNITURE DEPARTMENTS RESPONSIVE
   ========================================================================== */

@media (max-width: 980px) {

    .room-browser__heading {
        grid-template-columns:
            1fr;

        gap:
            1.15rem;
    }

    .room-browser__heading h2 {
        max-width:
            22ch;
    }

    .room-browser__intro {
        max-width:
            38rem;
    }

    .room-browser__layout {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(17rem, 0.85fr);

        gap:
            1.75rem;
    }

}


@media (max-width: 760px) {

    .room-browser {
        padding-block:
            3.5rem;
    }

    .room-browser__layout {
        grid-template-columns:
            1fr;

        gap:
            2rem;
    }

    .room-feature__figure {
        aspect-ratio:
            4 / 3;
    }

    .room-browser__departments {
        height:
            auto;
    }

}


@media (max-width: 520px) {

    .room-browser {
        padding-block:
            3rem;
    }

    .room-browser__heading {
        margin-bottom:
            1.75rem;
    }

    .room-browser__heading h2 {
        max-width:
            18ch;

        font-size:
            clamp(2.1rem, 10vw, 2.8rem);

        line-height:
            1.04;
    }

    .room-browser__intro {
        font-size:
            0.91rem;
    }

    .room-feature__figure {
        aspect-ratio:
            1 / 1;
    }

    .room-feature__title-row {
        align-items:
            flex-start;

        flex-direction:
            column;

        gap:
            0.6rem;
    }

    .room-feature__label {
        font-size:
            1.65rem;
    }

    .room-browser__departments {
        padding:
            1.25rem;
    }

    .room-link {
        padding-block:
            1rem;
    }

    .room-link__name {
        font-size:
            1.35rem;
    }

}

/* TAKE A SEAT FAMILY STORY START */

.family-story {
    padding: 72px 0 76px;
    background: #FCFAF6;
    color: #25282A;
    border-top: 1px solid rgba(35, 50, 67, 0.12);
    border-bottom: 1px solid rgba(35, 50, 67, 0.12);
}

.family-story > .site-shell {
    width: min(1260px, calc(100% - 80px));
    margin-inline: auto;
}

.family-story__heading {
    max-width: 780px;
    margin: 0 0 38px;
}

.family-story__eyebrow {
    margin: 0 0 10px;
    color: #A34F43;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.family-story__heading h2 {
    max-width: 760px;
    margin: 0;
    color: #233243;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(3rem, 5.4vw, 4.6rem);
    font-style: normal;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.035em;
}

.family-story__lede {
    max-width: 680px;
    margin: 18px 0 0;
    color: #4E5961;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.65;
}

.family-story__heading::after {
    display: block;
    width: 72px;
    height: 4px;
    margin-top: 24px;
    background: #C79A45;
    content: "";
}

.family-story__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: start;
}

.family-story__figure {
    margin: 0;
    padding: 10px;
    background: #F6F2EA;
    border: 1px solid rgba(35, 50, 67, 0.16);
    border-radius: 12px;
}

.family-story__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 7px;
}

.family-story__figure figcaption {
    margin: 10px 4px 2px;
    color: #71808A;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.family-story__content {
    color: #25282A;
}

.family-story__content > p {
    margin: 0 0 18px;
    font-size: 1rem;
    line-height: 1.75;
}

.family-story__content > p:first-child {
    color: #233243;
    font-weight: 650;
}

.family-story__highlights {
    margin: 28px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(35, 50, 67, 0.16);
}

.family-story__highlights li {
    display: grid;
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 13px 0;
    color: #233243;
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.45;
    border-bottom: 1px solid rgba(35, 50, 67, 0.16);
}

.family-story__highlights li::before {
    width: 9px;
    height: 9px;
    background: #C79A45;
    border-radius: 50%;
    content: "";
}

.family-story__content .family-story__note {
    margin: 28px 0 0;
    padding: 18px 20px;
    background: #F6F2EA;
    color: #233243;
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.6;
    border-left: 4px solid #A34F43;
}

@media (max-width: 820px) {
    .family-story {
        padding: 62px 0 66px;
    }

    .family-story__heading {
        margin-bottom: 32px;
    }

    .family-story__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .family-story__figure {
        max-width: 680px;
    }
}

@media (max-width: 560px) {
    .family-story > .site-shell {
        width: calc(100% - 32px);
    }

    .family-story {
        padding: 52px 0 56px;
    }

    .family-story__heading {
        margin-bottom: 28px;
    }

    .family-story__heading h2 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
        line-height: 1.04;
    }

    .family-story__lede {
        margin-top: 14px;
        font-size: 1rem;
    }

    .family-story__heading::after {
        margin-top: 20px;
    }

    .family-story__layout {
        gap: 28px;
    }

    .family-story__figure {
        padding: 8px;
        border-radius: 10px;
    }

    .family-story__figure img {
        border-radius: 5px;
    }

    .family-story__content > p {
        line-height: 1.68;
    }

    .family-story__highlights {
        margin: 24px 0;
    }

    .family-story__content .family-story__note {
        margin-top: 24px;
        padding: 16px 17px;
    }
}

/* TAKE A SEAT FAMILY STORY END */

/* TAKE A SEAT REFURBISHMENT PROCESS START */

.refurbishment-process {
    padding: 76px 0 82px;
    background: #F6F2EA;
    color: #25282A;
    border-top: 1px solid rgba(35, 50, 67, 0.14);
}

.refurbishment-process > .site-shell {
    width: min(1260px, calc(100% - 80px));
    margin-inline: auto;
}

.refurbishment-process__heading {
    max-width: 900px;
    margin: 0 0 42px;
}

.refurbishment-process__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 7px 10px;
    background: #A34F43;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.refurbishment-process__heading h2 {
    max-width: 820px;
    margin: 0;
    color: #233243;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(3rem, 5.4vw, 4.6rem);
    font-style: normal;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.refurbishment-process__lede {
    max-width: 760px;
    margin: 20px 0 0;
    color: #4E5961;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.65;
}

.refurbishment-process__heading::after {
    display: block;
    width: 74px;
    height: 4px;
    margin-top: 24px;
    background: #C79A45;
    content: "";
}

.refurbishment-process__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 52px;
    align-items: start;
}

.refurbishment-process__content {
    grid-column: 1;
    grid-row: 1;
    padding-top: 4px;
}

.refurbishment-process__figure {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    padding: 10px;
    background: #FCFAF6;
    border: 1px solid rgba(35, 50, 67, 0.18);
    border-radius: 12px;
}

.refurbishment-process__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 7px;
}

.refurbishment-process__figure figcaption {
    margin: 10px 4px 2px;
    color: #71808A;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.45;
}

.refurbishment-process__content > p {
    margin: 0 0 20px;
    color: #25282A;
    font-size: 1rem;
    line-height: 1.75;
}

.refurbishment-process__content > p:first-child {
    color: #233243;
    font-size: 1.06rem;
    font-weight: 700;
}

.refurbishment-process__checks {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    border-top: 3px solid #233243;
}

.refurbishment-process__checks li {
    position: relative;
    margin: 0;
    padding: 15px 12px 15px 34px;
    color: #233243;
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.45;
    border-bottom: 1px solid rgba(35, 50, 67, 0.18);
}

.refurbishment-process__checks li::before {
    position: absolute;
    top: 50%;
    left: 8px;
    width: 10px;
    height: 10px;
    background: #C79A45;
    border-radius: 2px;
    content: "";
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 900px) {
    .refurbishment-process {
        padding: 66px 0 72px;
    }

    .refurbishment-process__heading {
        margin-bottom: 36px;
    }

    .refurbishment-process__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .refurbishment-process__figure {
        grid-column: 1;
        grid-row: 1;
    }

    .refurbishment-process__content {
        grid-column: 1;
        grid-row: 2;
        padding-top: 0;
    }
}

@media (max-width: 560px) {
    .refurbishment-process {
        padding: 54px 0 60px;
    }

    .refurbishment-process > .site-shell {
        width: calc(100% - 32px);
    }

    .refurbishment-process__heading {
        margin-bottom: 30px;
    }

    .refurbishment-process__eyebrow {
        font-size: 0.69rem;
        line-height: 1.15;
    }

    .refurbishment-process__heading h2 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
        line-height: 1.04;
    }

    .refurbishment-process__lede {
        margin-top: 16px;
        font-size: 1rem;
    }

    .refurbishment-process__heading::after {
        margin-top: 20px;
    }

    .refurbishment-process__layout {
        gap: 26px;
    }

    .refurbishment-process__figure {
        padding: 8px;
        border-radius: 10px;
    }

    .refurbishment-process__figure img {
        border-radius: 5px;
    }

    .refurbishment-process__content > p {
        line-height: 1.68;
    }

    .refurbishment-process__checks {
        margin-top: 26px;
    }

    .refurbishment-process__checks li {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

/* TAKE A SEAT REFURBISHMENT PROCESS END */

/* TAKE A SEAT SHOWROOM VISIT START */

.showroom-visit {
    padding: 80px 0 84px;
    background: #233243;
    color: #FCFAF6;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showroom-visit > .site-shell {
    width: min(1260px, calc(100% - 80px));
    margin-inline: auto;
}

.showroom-visit__heading {
    max-width: 900px;
    margin: 0 0 42px;
}

.showroom-visit__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 7px 10px;
    background: #C79A45;
    color: #233243;
    font-family: "DM Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.showroom-visit__heading h2 {
    max-width: 840px;
    margin: 0;
    color: #FCFAF6;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(3rem, 5.4vw, 4.6rem);
    font-style: normal;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.showroom-visit__lede {
    max-width: 760px;
    margin: 20px 0 0;
    color: #D9D3C8;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.65;
}

.showroom-visit__heading::after {
    display: block;
    width: 74px;
    height: 4px;
    margin-top: 24px;
    background: #A34F43;
    content: "";
}

.showroom-visit__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 52px;
    align-items: start;
}

.showroom-visit__figure {
    margin: 0;
    padding: 10px;
    background: #FCFAF6;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
}

.showroom-visit__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 7px;
}

.showroom-visit__figure figcaption {
    margin: 10px 4px 2px;
    color: #5E6A72;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.showroom-visit__content {
    padding-top: 4px;
}

.showroom-visit__content > p {
    margin: 0 0 20px;
    color: #F6F2EA;
    font-size: 1.08rem;
    line-height: 1.75;
}

.showroom-visit__content > p:first-child {
    color: #ffffff;
    font-size: 1.12rem;
    font-weight: 700;
}

.showroom-visit__list {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    border-top: 3px solid #C79A45;
}

.showroom-visit__list li {
    position: relative;
    margin: 0;
    padding: 15px 12px 15px 34px;
    color: #FCFAF6;
    font-size: 1rem;
    font-weight: 750;
    line-height: 1.45;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.showroom-visit__list li::before {
    position: absolute;
    top: 50%;
    left: 8px;
    width: 10px;
    height: 10px;
    background: #A34F43;
    border-radius: 50%;
    content: "";
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .showroom-visit {
        padding: 68px 0 72px;
    }

    .showroom-visit__heading {
        margin-bottom: 36px;
    }

    .showroom-visit__layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .showroom-visit__figure {
        max-width: 760px;
    }

    .showroom-visit__content {
        padding-top: 0;
    }
}

@media (max-width: 560px) {
    .showroom-visit {
        padding: 54px 0 60px;
    }

    .showroom-visit > .site-shell {
        width: calc(100% - 32px);
    }

    .showroom-visit__heading {
        margin-bottom: 30px;
    }

    .showroom-visit__eyebrow {
        font-size: 0.69rem;
        line-height: 1.15;
    }

    .showroom-visit__heading h2 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
        line-height: 1.04;
    }

    .showroom-visit__lede {
        margin-top: 16px;
        font-size: 1rem;
    }

    .showroom-visit__heading::after {
        margin-top: 20px;
    }

    .showroom-visit__layout {
        gap: 26px;
    }

    .showroom-visit__figure {
        padding: 8px;
        border-radius: 10px;
    }

    .showroom-visit__figure img {
        border-radius: 5px;
    }

    .showroom-visit__content > p {
        line-height: 1.68;
    }

    .showroom-visit__list {
        margin-top: 26px;
    }

    .showroom-visit__list li {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

/* TAKE A SEAT SHOWROOM VISIT END */

/* TAKE A SEAT SHOWROOM FLOOR TYPE FIX START */

#featured-furniture h2 {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

#featured-furniture h3 {
    font-family: "DM Sans", sans-serif;
    font-style: normal;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
}

/* TAKE A SEAT SHOWROOM FLOOR TYPE FIX END */

/* TAKE A SEAT VISIT STORE START */

.visit-store {
    padding: 80px 0 84px;
    background: #FCFAF6;
    color: #25282A;
    border-top: 1px solid rgba(35, 50, 67, 0.12);
}

.visit-store > .site-shell {
    width: min(1260px, calc(100% - 80px));
    margin-inline: auto;
}

.visit-store__heading {
    max-width: 900px;
    margin: 0 0 42px;
}

.visit-store__eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 7px 10px;
    background: #A34F43;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.08em;
}

.visit-store__heading h2 {
    max-width: 840px;
    margin: 0;
    color: #233243;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(3rem, 5.4vw, 4.6rem);
    font-style: normal;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.045em;
}

.visit-store__lede {
    max-width: 760px;
    margin: 20px 0 0;
    color: #4E5961;
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.65;
}

.visit-store__heading::after {
    display: block;
    width: 74px;
    height: 4px;
    margin-top: 24px;
    background: #C79A45;
    content: "";
}

.visit-store__layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 54px;
    align-items: start;
}

.visit-store__figure {
    margin: 0;
    padding: 10px;
    background: #F6F2EA;
    border: 1px solid rgba(35, 50, 67, 0.16);
    border-radius: 12px;
}

.visit-store__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 7px;
}

.visit-store__figure figcaption {
    margin: 10px 4px 2px;
    color: #71808A;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
}

.visit-store__content {
    padding-top: 2px;
}

.visit-store__content > p:first-child {
    margin: 0 0 28px;
    color: #233243;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.7;
}

.visit-store__details {
    border-top: 3px solid #233243;
    border-bottom: 1px solid rgba(35, 50, 67, 0.18);
}

.visit-store__detail {
    display: grid;
    grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
    gap: 24px;
    padding: 19px 0;
    border-bottom: 1px solid rgba(35, 50, 67, 0.18);
}

.visit-store__detail:last-child {
    border-bottom: 0;
}

.visit-store__detail h3 {
    margin: 0;
    color: #A34F43;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.visit-store__detail address,
.visit-store__detail > p {
    margin: 0;
    color: #233243;
    font-size: 1.03rem;
    font-style: normal;
    font-weight: 650;
    line-height: 1.6;
}

.visit-store__detail a {
    color: #233243;
    font-weight: 800;
    text-decoration-color: #C79A45;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.visit-store__detail a:hover,
.visit-store__detail a:focus-visible {
    color: #A34F43;
}

.visit-store__hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.visit-store__hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 5px 0;
    color: #233243;
    font-size: 0.98rem;
    line-height: 1.5;
}

.visit-store__hours li span:first-child {
    font-weight: 750;
}

.visit-store__hours li span:last-child {
    color: #4E5961;
    font-weight: 650;
    text-align: right;
}

.visit-store__note {
    margin: 28px 0 0;
    padding: 20px 22px;
    background: #F6F2EA;
    color: #233243;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.65;
    border-left: 4px solid #C79A45;
}

@media (max-width: 900px) {
    .visit-store {
        padding: 68px 0 72px;
    }

    .visit-store__heading {
        margin-bottom: 36px;
    }

    .visit-store__layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .visit-store__figure {
        max-width: 760px;
    }

    .visit-store__content {
        padding-top: 0;
    }
}

@media (max-width: 560px) {
    .visit-store {
        padding: 54px 0 60px;
    }

    .visit-store > .site-shell {
        width: calc(100% - 32px);
    }

    .visit-store__heading {
        margin-bottom: 30px;
    }

    .visit-store__eyebrow {
        font-size: 0.69rem;
        line-height: 1.15;
    }

    .visit-store__heading h2 {
        font-size: clamp(2.35rem, 11vw, 3.2rem);
        line-height: 1.04;
    }

    .visit-store__lede {
        margin-top: 16px;
        font-size: 1rem;
    }

    .visit-store__heading::after {
        margin-top: 20px;
    }

    .visit-store__layout {
        gap: 28px;
    }

    .visit-store__figure {
        padding: 8px;
        border-radius: 10px;
    }

    .visit-store__figure img {
        border-radius: 5px;
    }

    .visit-store__detail {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 17px 0;
    }

    .visit-store__hours li {
        gap: 18px;
        font-size: 0.94rem;
    }

    .visit-store__note {
        margin-top: 24px;
        padding: 18px;
    }
}

/* TAKE A SEAT VISIT STORE END */

/* TAKE A SEAT SITE FOOTER START */

.site-footer {
    padding: 54px 0 0;
    background: #233243;
    color: #FCFAF6;
    border-top: 5px solid #C79A45;
}

.site-footer > .site-shell {
    width: min(1260px, calc(100% - 80px));
    margin-inline: auto;
}

.site-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.7fr) minmax(220px, 0.85fr);
    gap: 64px;
    align-items: start;
    padding-bottom: 44px;
}

.site-footer__brand {
    max-width: 470px;
}

.site-footer__logo {
    display: inline-block;
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.45rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-decoration: none;
}

.site-footer__logo:hover,
.site-footer__logo:focus-visible {
    color: #C79A45;
}

.site-footer__brand p {
    max-width: 420px;
    margin: 0;
    color: #D8D3CB;
    font-size: 1rem;
    line-height: 1.65;
}

.site-footer__nav h2,
.site-footer__contact h2 {
    margin: 0 0 16px;
    padding-bottom: 10px;
    color: #C79A45;
    font-family: "DM Sans", sans-serif;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(199, 154, 69, 0.55);
}

.site-footer__nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__nav li + li {
    margin-top: 10px;
}

.site-footer__nav a {
    color: #FCFAF6;
    font-size: 0.96rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible {
    color: #C79A45;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.site-footer__contact p {
    margin: 0 0 16px;
    color: #D8D3CB;
    font-size: 0.96rem;
    line-height: 1.6;
}

.site-footer__phone {
    display: inline-block;
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 1.3rem;
    font-weight: 850;
    line-height: 1.2;
    text-decoration-color: #A34F43;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.site-footer__phone:hover,
.site-footer__phone:focus-visible {
    color: #C79A45;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
    padding: 20px 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__bottom p {
    margin: 0;
    color: #AEB7BD;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.5;
}

.site-footer__bottom a {
    flex: 0 0 auto;
    color: #FCFAF6;
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 1.4;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
    color: #C79A45;
}

@media (max-width: 860px) {
    .site-footer__main {
        grid-template-columns: 1fr 1fr;
        gap: 38px 46px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
        max-width: 620px;
    }
}

@media (max-width: 560px) {
    .site-footer {
        padding-top: 44px;
    }

    .site-footer > .site-shell {
        width: calc(100% - 32px);
    }

    .site-footer__main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 36px;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__logo {
        font-size: 2rem;
    }

    .site-footer__brand p,
    .site-footer__contact p {
        font-size: 0.96rem;
    }

    .site-footer__nav a {
        font-size: 1rem;
    }

    .site-footer__bottom {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: start;
    }

    .site-footer__bottom a {
        justify-self: start;
    }
}

/* TAKE A SEAT SITE FOOTER END */

/* TAKE A SEAT MOBILE NAV FIX START */

@media (max-width: 940px) {

    .site-header__inner {
        position: relative;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;

        z-index: 50;

        display: none;

        width: 100%;

        background: #FCFAF6;

        border-top: 1px solid rgba(35, 50, 67, 0.12);
        border-bottom: 3px solid #C79A45;

        box-shadow: 0 1.1rem 2.2rem rgba(35, 50, 67, 0.14);
    }

    .nav-toggle[aria-expanded="true"] + .primary-nav {
        display: block;
    }

    .primary-nav__list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;

        gap: 0;

        width: 100%;

        padding: 0.65rem 1.25rem 0.85rem;
    }

    .primary-nav__list li {
        width: 100%;
    }

    .primary-nav__list a {
        display: flex;
        align-items: center;

        width: 100%;
        min-height: 3.25rem;

        padding: 0.65rem 0.25rem;

        color: #25282A;

        font-size: 0.78rem;
        font-weight: 800;
        letter-spacing: 0.065em;

        border-bottom: 1px solid rgba(35, 50, 67, 0.1);
    }

    .primary-nav__list li:last-child a {
        border-bottom: 0;
    }

    .primary-nav__list a::after {
        display: none;
    }

    .nav-toggle {
        position: relative;

        border-color: rgba(35, 50, 67, 0.24);

        transition:
            background var(--transition-fast),
            border-color var(--transition-fast);
    }

    .nav-toggle:hover,
    .nav-toggle:focus-visible,
    .nav-toggle[aria-expanded="true"] {
        background: rgba(199, 154, 69, 0.12);
        border-color: #C79A45;
    }

    .nav-toggle span:not(.sr-only) {
        transform-origin: center;

        transition:
            transform var(--transition-fast),
            opacity var(--transition-fast);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(0.445rem) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }

    .nav-toggle[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-0.445rem) rotate(-45deg);
    }

}

@media (max-width: 720px) {

    .primary-nav__list {
        padding-inline: 1rem;
    }

    .primary-nav__list a {
        min-height: 3.5rem;

        font-size: 0.82rem;
    }

}

/* TAKE A SEAT MOBILE NAV FIX END */
