/*
|--------------------------------------------------------------------------
| TAKE A SEAT PREMIUM
| Homepage and shared retail foundation
|--------------------------------------------------------------------------
*/

:root {
    --blue: #2154D8;
    --blue-dark: #173CAA;
    --blue-soft: #E7EEFF;
    --yellow: #F6C445;
    --yellow-dark: #DAA91E;
    --navy: #132238;
    --navy-soft: #1C3151;
    --warm-white: #F7F7F2;
    --white: #FFFFFF;
    --charcoal: #22262C;
    --gray-900: #343940;
    --gray-700: #5E646C;
    --gray-500: #8B9198;
    --gray-300: #CFD2D4;
    --gray-200: #E8E9E6;
    --gray-100: #F2F3F0;
    --sale: #E85B3F;

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

    --shell: 1380px;
    --header-height: 82px;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;

    --shadow-soft:
        0 12px 30px rgba(19, 34, 56, 0.08);

    --shadow-medium:
        0 18px 50px rgba(19, 34, 56, 0.14);

    --transition-fast:
        180ms ease;

    --transition:
        280ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

/*
|--------------------------------------------------------------------------
| Reset
|--------------------------------------------------------------------------
*/

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--warm-white);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea,
select {
    font-family: var(--font-body);
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

p:last-child {
    margin-bottom: 0;
}

/*
|--------------------------------------------------------------------------
| Accessibility
|--------------------------------------------------------------------------
*/

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 10000;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    background: var(--navy);
    color: var(--white);
    font-weight: 700;
    transform: translateY(-160%);
    transition: transform var(--transition-fast);
}

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

.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;
}

:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 4px;
}

/*
|--------------------------------------------------------------------------
| Shared layout
|--------------------------------------------------------------------------
*/

.shell {
    width: min(
        calc(100% - 48px),
        var(--shell)
    );
    margin-inline: auto;
}

.section {
    padding: 110px 0;
}

.section-heading {
    max-width: 820px;
    margin-bottom: 46px;
}

.section-heading h2,
.campaign-copy h2,
.financing-copy h2,
.showroom-copy h2,
.final-cta h2 {
    margin-bottom: 0;
    color: var(--navy);
    font-size: clamp(
        2.35rem,
        4vw,
        4.6rem
    );
    font-weight: 800;
}

.split-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 38px;
    max-width: none;
}

.split-heading > div {
    max-width: 820px;
}

.eyebrow {
    margin-bottom: 16px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.heading-note {
    max-width: 320px;
    margin: 0 0 8px;
    color: var(--gray-700);
    font-size: 1rem;
    line-height: 1.55;
}

/*
|--------------------------------------------------------------------------
| Buttons and links
|--------------------------------------------------------------------------
*/

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
    transition:
        transform var(--transition-fast),
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

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

.button-small {
    min-height: 44px;
    padding: 11px 18px;
    font-size: 0.88rem;
}

.button-dark {
    background: var(--navy);
    color: var(--white);
}

.button-dark:hover {
    background: var(--blue);
}

.button-blue {
    background: var(--blue);
    color: var(--white);
}

.button-blue:hover {
    background: var(--blue-dark);
}

.button-yellow {
    background: var(--yellow);
    color: var(--navy);
}

.button-yellow:hover {
    background: #FFD45D;
    box-shadow:
        0 10px 24px rgba(246, 196, 69, 0.28);
}

.button-light {
    background: var(--white);
    color: var(--navy);
}

.button-light:hover {
    background: var(--blue-soft);
}

.button-ghost {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.button-ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.09);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--blue);
    color: var(--navy);
    font-family: var(--font-display);
    font-weight: 800;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.text-link::after {
    content: "→";
    transition: transform var(--transition-fast);
}

.text-link:hover {
    color: var(--blue);
}

.text-link:hover::after {
    transform: translateX(4px);
}

/*
|--------------------------------------------------------------------------
| Utility bar
|--------------------------------------------------------------------------
*/

.utility-bar {
    background: var(--yellow);
    color: var(--navy);
    font-size: 0.82rem;
    font-weight: 700;
}

.utility-bar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.utility-bar p {
    margin: 0;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-links a {
    transition: opacity var(--transition-fast);
}

.utility-links a:hover {
    opacity: 0.65;
}

/*
|--------------------------------------------------------------------------
| Header
|--------------------------------------------------------------------------
*/

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(19, 34, 56, 0.09);
    backdrop-filter: blur(15px);
    transition:
        box-shadow var(--transition),
        background var(--transition);
}

.site-header.is-scrolled {
    box-shadow:
        0 8px 30px rgba(19, 34, 56, 0.1);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns:
        auto 1fr auto;
    align-items: center;
    gap: 34px;
}

.brand {
    display: inline-flex;
    align-items: flex-start;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 1.34rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1;
}

.brand-mark {
    margin-left: 3px;
    color: var(--yellow-dark);
    font-size: 0.58em;
}

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

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: clamp(
        18px,
        2vw,
        34px
    );
}

.primary-nav a,
.text-action {
    position: relative;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
}

.primary-nav a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    left: 0;
    height: 2px;
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: right;
    transition:
        transform var(--transition-fast);
}

.primary-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.text-action:hover {
    color: var(--blue);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 0;
    border-radius: 50%;
    background: var(--blue-soft);
    cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
    transition:
        transform var(--transition-fast),
        opacity var(--transition-fast);
}

/*
|--------------------------------------------------------------------------
| Hero
|--------------------------------------------------------------------------
*/

.hero {
    overflow: hidden;
    background: var(--blue);
    color: var(--white);
}

.hero-grid {
    min-height: 700px;
    display: grid;
    grid-template-columns:
        minmax(390px, 0.82fr)
        minmax(0, 1.3fr);
    align-items: stretch;
}

.hero-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        80px
        clamp(34px, 5vw, 74px)
        80px
        0;
    animation:
        hero-copy-in
        700ms
        cubic-bezier(0.2, 0.75, 0.2, 1)
        both;
}

.hero-copy .eyebrow {
    color: var(--yellow);
}

.hero h1 {
    max-width: 660px;
    margin-bottom: 28px;
    color: var(--white);
    font-size: clamp(
        3.15rem,
        5.6vw,
        6.3rem
    );
    font-weight: 800;
}

.hero h1 span {
    display: block;
    color: var(--yellow);
}

.hero-intro {
    max-width: 590px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(
        1.05rem,
        1.3vw,
        1.26rem
    );
    line-height: 1.65;
}

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

.hero-media {
    position: relative;
    min-width: 0;
    padding: 32px 0 32px 32px;
    animation:
        hero-media-in
        850ms
        100ms
        cubic-bezier(0.2, 0.75, 0.2, 1)
        both;
}

.hero-placeholder {
    min-height: 636px;
    border-radius:
        var(--radius-lg)
        0
        0
        var(--radius-lg);
}

.hero-badge {
    position: absolute;
    right: 30px;
    bottom: 56px;
    width: 170px;
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--navy);
    text-align: center;
    transform: rotate(-6deg);
    box-shadow: var(--shadow-medium);
}

.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.hero-badge span {
    display: block;
    max-width: 110px;
    margin-top: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.35;
}

/*
|--------------------------------------------------------------------------
| Placeholder media
|--------------------------------------------------------------------------
*/

.media-placeholder {
    position: relative;
    width: 100%;
    min-height: 320px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background:
        linear-gradient(
            135deg,
            rgba(33, 84, 216, 0.88),
            rgba(19, 34, 56, 0.96)
        );
    color: rgba(255, 255, 255, 0.78);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-align: center;
}

.media-placeholder::before,
.media-placeholder::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(246, 196, 69, 0.16);
}

.media-placeholder::before {
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
}

.media-placeholder::after {
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: -80px;
}

.media-placeholder span {
    position: relative;
    z-index: 2;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: var(--radius-pill);
    background: rgba(19, 34, 56, 0.38);
    backdrop-filter: blur(8px);
}

/*
|--------------------------------------------------------------------------
| Benefit strip
|--------------------------------------------------------------------------
*/

.benefit-strip {
    border-bottom: 1px solid var(--gray-200);
    background: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
}

.benefit-grid > div {
    min-height: 116px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 28px;
    border-right: 1px solid var(--gray-200);
}

.benefit-grid > div:first-child {
    border-left: 1px solid var(--gray-200);
}

.benefit-grid strong {
    display: block;
    margin-bottom: 5px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
}

.benefit-grid span {
    color: var(--gray-700);
    font-size: 0.88rem;
    line-height: 1.45;
}

/*
|--------------------------------------------------------------------------
| Categories
|--------------------------------------------------------------------------
*/

.categories-section {
    background: var(--warm-white);
}

.category-grid {
    display: grid;
    grid-template-columns:
        1.18fr 0.82fr;
    grid-template-rows:
        repeat(2, minmax(280px, auto));
    gap: 22px;
}

.category-card {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow:
        0 0 0 1px rgba(19, 34, 56, 0.06);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.category-card-large {
    grid-row: 1 / span 2;
    min-height: 582px;
}

.category-card .media-placeholder {
    height: 100%;
    min-height: inherit;
    transition: transform 550ms ease;
}

.category-card:nth-child(2) .media-placeholder {
    background:
        linear-gradient(
            135deg,
            #5B75C7,
            #1A2941
        );
}

.category-card:nth-child(3) .media-placeholder {
    background:
        linear-gradient(
            135deg,
            #DCA725,
            #745A17
        );
}

.category-card:nth-child(4) .media-placeholder {
    background:
        linear-gradient(
            135deg,
            #496073,
            #17222E
        );
}

.category-card-copy {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 5;
    padding: 18px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--navy);
    backdrop-filter: blur(12px);
    transition: transform var(--transition);
}

.category-card-copy span {
    display: block;
    margin-bottom: 3px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
}

.category-card-copy strong {
    display: block;
    color: var(--gray-700);
    font-size: 0.82rem;
    font-weight: 600;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.category-card:hover .media-placeholder {
    transform: scale(1.035);
}

.category-card:hover .category-card-copy {
    transform: translateY(-4px);
}

/*
|--------------------------------------------------------------------------
| New arrivals
|--------------------------------------------------------------------------
*/

.arrivals-section {
    background: var(--white);
}

.product-rail {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    min-width: 0;
}

.product-card > a {
    display: block;
}

.product-media {
    position: relative;
    overflow: hidden;
    margin-bottom: 18px;
    border-radius: var(--radius-md);
    background: var(--gray-100);
}

.product-media .media-placeholder {
    min-height: 390px;
    background:
        linear-gradient(
            145deg,
            #E9EDF7,
            #BEC9E4
        );
    color: var(--navy);
    transition: transform 500ms ease;
}

.product-media .media-placeholder::before,
.product-media .media-placeholder::after {
    background: rgba(33, 84, 216, 0.08);
}

.product-media .media-placeholder span {
    border-color: rgba(19, 34, 56, 0.16);
    background: rgba(255, 255, 255, 0.5);
}

.product-card:nth-child(2) .product-media .media-placeholder {
    background:
        linear-gradient(
            145deg,
            #E7DDCE,
            #C5AE8B
        );
}

.product-card:nth-child(3) .product-media .media-placeholder {
    background:
        linear-gradient(
            145deg,
            #FAE5A9,
            #E6B635
        );
}

.product-card:nth-child(4) .product-media .media-placeholder {
    background:
        linear-gradient(
            145deg,
            #E3E6E5,
            #B1BAB6
        );
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 5;
    padding: 8px 11px;
    border-radius: var(--radius-pill);
    background: var(--blue);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.product-badge-yellow {
    background: var(--yellow);
    color: var(--navy);
}

.product-card-copy {
    padding: 0 4px;
}

.product-category {
    margin-bottom: 5px;
    color: var(--gray-700);
    font-size: 0.8rem;
    font-weight: 600;
}

.product-card h3 {
    margin-bottom: 8px;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.product-price {
    margin-bottom: 0;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 800;
}

.product-card:hover .product-media .media-placeholder {
    transform: scale(1.035);
}

.product-card:hover h3 {
    color: var(--blue);
}

/*
|--------------------------------------------------------------------------
| Campaign
|--------------------------------------------------------------------------
*/

.campaign-section {
    padding: 34px 0;
    background: var(--navy);
}

.campaign-grid {
    min-height: 620px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(360px, 0.75fr);
    gap: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--blue);
}

.campaign-media {
    min-width: 0;
}

.campaign-media .media-placeholder {
    height: 100%;
    min-height: 620px;
    background:
        linear-gradient(
            145deg,
            #496EDD,
            #1A2C52
        );
}

.campaign-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        clamp(44px, 6vw, 86px);
    background: var(--blue);
    color: var(--white);
}

.campaign-copy .eyebrow {
    color: var(--yellow);
}

.campaign-copy h2 {
    margin-bottom: 26px;
    color: var(--white);
}

.campaign-copy p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

.campaign-copy .button {
    align-self: flex-start;
}

/*
|--------------------------------------------------------------------------
| Financing
|--------------------------------------------------------------------------
*/

.financing-section {
    background: var(--yellow);
}

.financing-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr)
        minmax(280px, 0.58fr);
    align-items: center;
    gap: 80px;
}

.financing-copy .eyebrow {
    color: var(--navy);
}

.financing-copy h2 {
    max-width: 840px;
    margin-bottom: 24px;
}

.financing-copy > p:not(.eyebrow) {
    max-width: 660px;
    margin-bottom: 28px;
    color: rgba(19, 34, 56, 0.78);
    font-size: 1.08rem;
}

.financing-copy .text-link {
    border-color: var(--navy);
}

.finance-number {
    min-height: 310px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 36px;
    border: 2px solid rgba(19, 34, 56, 0.15);
    border-radius: 50%;
    color: var(--navy);
    text-align: center;
}

.finance-number strong {
    font-family: var(--font-display);
    font-size: clamp(
        5.4rem,
        9vw,
        9rem
    );
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.finance-number span {
    max-width: 180px;
    margin-top: 20px;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| Services
|--------------------------------------------------------------------------
*/

.services-section {
    background: var(--warm-white);
}

.service-grid {
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    border-top: 1px solid var(--gray-300);
    border-left: 1px solid var(--gray-300);
}

.service-card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    padding: 34px 30px;
    border-right: 1px solid var(--gray-300);
    border-bottom: 1px solid var(--gray-300);
    background: var(--warm-white);
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}

.service-number {
    margin-bottom: 54px;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 0.74rem;
    font-weight: 800;
}

.service-card h3 {
    margin-bottom: 14px;
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 800;
}

.service-card p {
    margin-bottom: 26px;
    color: var(--gray-700);
    font-size: 0.94rem;
}

.service-card a {
    margin-top: auto;
    color: var(--blue);
    font-weight: 800;
}

.service-card:hover {
    z-index: 2;
    background: var(--blue);
    color: var(--white);
    transform: translateY(-5px);
}

.service-card:hover .service-number,
.service-card:hover h3,
.service-card:hover a {
    color: var(--yellow);
}

.service-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/*
|--------------------------------------------------------------------------
| Inspiration
|--------------------------------------------------------------------------
*/

.inspiration-section {
    background: var(--white);
}

.inspiration-grid {
    display: grid;
    grid-template-columns:
        1.15fr 0.85fr;
    grid-template-rows:
        repeat(2, 285px);
    gap: 22px;
}

.inspiration-card {
    overflow: hidden;
    border-radius: var(--radius-md);
}

.inspiration-card-tall {
    grid-row: 1 / span 2;
}

.inspiration-card .media-placeholder {
    height: 100%;
    min-height: 100%;
    transition: transform 500ms ease;
}

.inspiration-card:first-child .media-placeholder {
    background:
        linear-gradient(
            145deg,
            #657FD0,
            #273A6D
        );
}

.inspiration-card:nth-child(2) .media-placeholder {
    background:
        linear-gradient(
            145deg,
            #E8C65B,
            #986E0D
        );
}

.inspiration-card:nth-child(3) .media-placeholder {
    background:
        linear-gradient(
            145deg,
            #89949D,
            #34414D
        );
}

.inspiration-card:hover .media-placeholder {
    transform: scale(1.035);
}

/*
|--------------------------------------------------------------------------
| Showroom
|--------------------------------------------------------------------------
*/

.showroom-section {
    padding: 110px 0;
    background: var(--blue);
    color: var(--white);
}

.showroom-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.78fr)
        minmax(0, 1.22fr);
    align-items: center;
    gap: clamp(
        48px,
        7vw,
        100px
    );
}

.showroom-copy .eyebrow {
    color: var(--yellow);
}

.showroom-copy h2 {
    margin-bottom: 24px;
    color: var(--white);
}

.showroom-copy > p:not(.eyebrow) {
    max-width: 620px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
}

.showroom-details {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-bottom: 38px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.showroom-details span,
.showroom-details strong {
    display: block;
}

.showroom-details span {
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showroom-details strong {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
}

.showroom-media {
    min-width: 0;
}

.showroom-media .media-placeholder {
    min-height: 620px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(
            145deg,
            #F0C44C,
            #735B19
        );
}

/*
|--------------------------------------------------------------------------
| Final CTA
|--------------------------------------------------------------------------
*/

.final-cta {
    padding: 82px 0;
    background: var(--navy);
    color: var(--white);
}

.final-cta-inner {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 48px;
}

.final-cta .eyebrow {
    color: var(--yellow);
}

.final-cta h2 {
    max-width: 760px;
    color: var(--white);
}

.final-cta-actions {
    flex: 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.site-footer {
    padding: 74px 0 28px;
    background: #0A1422;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        1.7fr repeat(3, 0.72fr);
    gap: 60px;
    padding-bottom: 58px;
}

.brand-footer {
    color: var(--yellow);
}

.footer-brand p {
    max-width: 420px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.95rem;
}

.footer-grid h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-grid li + li {
    margin-top: 10px;
}

.footer-grid a:not(.brand) {
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-grid a:not(.brand):hover {
    color: var(--yellow);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

/*
|--------------------------------------------------------------------------
| Motion
|--------------------------------------------------------------------------
*/

[data-reveal] {
    transition:
        opacity 650ms ease,
        transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

[data-reveal].reveal-ready {
    opacity: 0;
}

[data-reveal="up"].reveal-ready {
    transform: translateY(28px);
}

[data-reveal="scale"].reveal-ready {
    transform: scale(0.97);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@keyframes hero-copy-in {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-media-in {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1120px) {

    .header-inner {
        grid-template-columns:
            auto auto 1fr;
    }

    .nav-toggle {
        display: block;
        justify-self: end;
        order: 3;
    }

    .primary-nav {
        position: absolute;
        top: 100%;
        right: 24px;
        left: 24px;
        display: none;
        padding: 18px;
        border: 1px solid var(--gray-200);
        border-radius: 0 0 var(--radius-md) var(--radius-md);
        background: var(--white);
        box-shadow: var(--shadow-medium);
    }

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

    .primary-nav ul {
        display: block;
    }

    .primary-nav li + li {
        margin-top: 4px;
    }

    .primary-nav a {
        display: block;
        padding: 13px 14px;
        border-radius: 10px;
    }

    .primary-nav a:hover {
        background: var(--blue-soft);
    }

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

    .header-actions {
        justify-self: end;
        order: 2;
    }

    .nav-toggle {
        order: 3;
    }

    .hero-grid {
        min-height: 620px;
        grid-template-columns:
            0.95fr 1.05fr;
    }

    .hero h1 {
        font-size: clamp(
            3rem,
            5.6vw,
            5rem
        );
    }

    .hero-placeholder {
        min-height: 556px;
    }

    .product-rail {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        row-gap: 46px;
    }

    .campaign-grid {
        grid-template-columns:
            1.08fr 0.92fr;
    }

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

    .footer-grid {
        grid-template-columns:
            1.4fr repeat(3, 0.7fr);
        gap: 38px;
    }

}

/*
|--------------------------------------------------------------------------
| Small tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 900px) {

    .section {
        padding: 86px 0;
    }

    .utility-links {
        gap: 16px;
    }

    .header-actions .text-action {
        display: none;
    }

    .hero-grid {
        display: block;
        padding-top: 64px;
    }

    .hero-copy {
        max-width: 760px;
        padding:
            0
            0
            50px;
    }

    .hero-media {
        padding:
            0
            0
            28px;
    }

    .hero-placeholder {
        min-height: 520px;
        border-radius: var(--radius-lg);
    }

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

    .benefit-grid > div:nth-child(3) {
        border-left: 1px solid var(--gray-200);
    }

    .benefit-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid var(--gray-200);
    }

    .split-heading {
        display: block;
    }

    .split-heading .text-link,
    .split-heading .button,
    .heading-note {
        margin-top: 24px;
    }

    .category-grid {
        grid-template-columns:
            repeat(2, 1fr);
        grid-template-rows:
            auto;
    }

    .category-card-large {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 450px;
    }

    .campaign-grid {
        display: block;
    }

    .campaign-media .media-placeholder {
        min-height: 480px;
    }

    .financing-grid {
        grid-template-columns:
            1fr 300px;
        gap: 46px;
    }

    .showroom-grid {
        display: block;
    }

    .showroom-copy {
        margin-bottom: 52px;
    }

    .showroom-media .media-placeholder {
        min-height: 520px;
    }

    .final-cta-inner {
        display: block;
    }

    .final-cta-actions {
        margin-top: 32px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 680px) {

    .shell {
        width: min(
            calc(100% - 30px),
            var(--shell)
        );
    }

    .section {
        padding: 68px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .campaign-copy h2,
    .financing-copy h2,
    .showroom-copy h2,
    .final-cta h2 {
        font-size: clamp(
            2.15rem,
            10vw,
            3.3rem
        );
    }

    .utility-bar-inner {
        min-height: 34px;
        justify-content: center;
    }

    .utility-bar p {
        text-align: center;
    }

    .utility-links {
        display: none;
    }

    .header-inner {
        min-height: 72px;
        grid-template-columns:
            1fr auto;
        gap: 14px;
    }

    .brand {
        font-size: 1.15rem;
    }

    .header-actions {
        display: none;
    }

    .nav-toggle {
        grid-column: 2;
        grid-row: 1;
    }

    .primary-nav {
        right: 15px;
        left: 15px;
    }

    .hero-grid {
        padding-top: 48px;
    }

    .hero h1 {
        font-size: clamp(
            2.8rem,
            13vw,
            4.4rem
        );
    }

    .hero-intro {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-placeholder {
        min-height: 410px;
    }

    .hero-badge {
        right: 18px;
        bottom: 48px;
        width: 132px;
        min-height: 132px;
        padding: 18px;
    }

    .hero-badge strong {
        font-size: 1.2rem;
    }

    .hero-badge span {
        font-size: 0.68rem;
    }

    .benefit-grid {
        display: block;
    }

    .benefit-grid > div,
    .benefit-grid > div:first-child,
    .benefit-grid > div:nth-child(3) {
        min-height: 96px;
        padding: 20px 0;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid var(--gray-200);
    }

    .benefit-grid > div:last-child {
        border-bottom: 0;
    }

    .category-grid {
        display: block;
    }

    .category-card {
        display: block;
        min-height: 310px;
    }

    .category-card + .category-card {
        margin-top: 18px;
    }

    .category-card-large {
        min-height: 410px;
    }

    .product-rail {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 18px;
        scrollbar-width: thin;
    }

    .product-card {
        flex: 0 0 82%;
        scroll-snap-align: start;
    }

    .product-media .media-placeholder {
        min-height: 350px;
    }

    .campaign-section {
        padding: 18px 0;
    }

    .campaign-grid {
        width: calc(100% - 30px);
    }

    .campaign-media .media-placeholder {
        min-height: 360px;
    }

    .campaign-copy {
        padding: 42px 26px;
    }

    .financing-grid {
        display: block;
    }

    .finance-number {
        width: min(100%, 320px);
        min-height: 290px;
        margin: 46px auto 0;
    }

    .service-grid {
        display: block;
        border-left: 0;
    }

    .service-card {
        min-height: 250px;
        border-left: 1px solid var(--gray-300);
    }

    .service-number {
        margin-bottom: 34px;
    }

    .inspiration-grid {
        display: block;
    }

    .inspiration-card {
        min-height: 330px;
    }

    .inspiration-card + .inspiration-card {
        margin-top: 18px;
    }

    .showroom-section {
        padding: 72px 0;
    }

    .showroom-details {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .showroom-media .media-placeholder {
        min-height: 390px;
    }

    .final-cta {
        padding: 64px 0;
    }

    .final-cta-actions {
        display: grid;
    }

    .final-cta-actions .button {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
        gap: 34px 26px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom p + p {
        margin-top: 8px;
    }

}

/*
|--------------------------------------------------------------------------
| Reduced motion
|--------------------------------------------------------------------------
*/

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

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    [data-reveal].reveal-ready {
        opacity: 1;
        transform: none;
    }

}
/* TAKE A SEAT PREMIUM HEADER BRAND START */

:root {
    --header-height: 136px;
}

.header-inner {
    min-height: var(--header-height);
    grid-template-columns: minmax(390px, 500px) 1fr auto;
    gap: 38px;
}

.brand-logo {
    width: min(100%, 500px);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo .brand__logo {
    display: block;
    width: 100%;
    height: auto;
    max-height: 112px;
    object-fit: contain;
    object-position: left center;
}

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

.header-actions {
    white-space: nowrap;
}

@media (max-width: 1260px) {

    .header-inner {
        grid-template-columns: minmax(330px, 420px) 1fr auto;
        gap: 26px;
    }

    .brand-logo {
        width: min(100%, 420px);
    }

    .brand-logo .brand__logo {
        max-height: 96px;
    }

}

@media (max-width: 1120px) {

    :root {
        --header-height: 108px;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
        gap: 18px;
    }

    .brand-logo {
        width: min(100%, 360px);
    }

    .brand-logo .brand__logo {
        max-height: 84px;
    }

}

@media (max-width: 680px) {

    :root {
        --header-height: 88px;
    }

    .header-inner {
        min-height: var(--header-height);
        grid-template-columns: 1fr auto;
    }

    .brand-logo {
        width: min(100%, 270px);
    }

    .brand-logo .brand__logo {
        max-height: 66px;
    }

}

/* TAKE A SEAT PREMIUM HEADER BRAND END */
/* TAKE A SEAT MOBILE PRODUCT GRID START */

@media (max-width: 680px) {

    .product-rail {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 14px;
        overflow: visible;
        padding-bottom: 0;
        scroll-snap-type: none;
        scrollbar-width: auto;
        -ms-overflow-style: auto;
        overscroll-behavior-inline: auto;
    }

    .product-card {
        min-width: 0;
        flex: none;
        scroll-snap-align: none;
    }

    .product-media {
        margin-bottom: 14px;
    }

    .product-media .media-placeholder {
        min-height: 250px;
    }

    .product-card-copy {
        padding-inline: 2px;
    }

    .product-category {
        font-size: 0.76rem;
    }

    .product-card h3 {
        font-size: 1rem;
        line-height: 1.2;
    }

    .product-price {
        font-size: 1rem;
    }

}

@media (max-width: 430px) {

    .product-rail {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .product-media .media-placeholder {
        min-height: 340px;
    }

    .product-card h3 {
        font-size: 1.12rem;
    }

    .product-price {
        font-size: 1.08rem;
    }

}

/* TAKE A SEAT MOBILE PRODUCT GRID END */

/* TAKE A SEAT PREMIUM BACKGROUND HERO START */

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 600px;
    background:
        linear-gradient(
            90deg,
            rgba(19, 34, 56, 0.74) 0%,
            rgba(24, 49, 116, 0.54) 22%,
            rgba(33, 84, 216, 0.22) 40%,
            rgba(19, 34, 56, 0.06) 58%,
            rgba(19, 34, 56, 0.00) 72%
        ),
        linear-gradient(
            180deg,
            rgba(19, 34, 56, 0.00) 55%,
            rgba(19, 34, 56, 0.10) 100%
        ),
        url("../images/home/home-hero-living-room.webp");
    background-size: cover;
    background-position: center 54%;
    background-repeat: no-repeat;
    color: var(--white);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            rgba(33, 84, 216, 0.04),
            transparent 48%
        );
}

.hero-grid,
.hero-grid-background {
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-top: 54px;
    padding-bottom: 54px;
}

.hero-copy {
    width: min(100%, 660px);
    max-width: 660px;
    display: block;
    padding: 0;
    position: relative;
    z-index: 2;
}

.hero-copy .eyebrow {
    margin-bottom: 18px;
    color: var(--yellow);
}

.hero h1 {
    max-width: 650px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(
        3.6rem,
        5.15vw,
        5.75rem
    );
    line-height: 0.98;
    letter-spacing: -0.05em;
    text-shadow:
        0 2px 18px rgba(19, 34, 56, 0.30);
}

.hero h1 span {
    display: block;
    color: var(--yellow);
}

.hero-intro {
    max-width: 570px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.08rem;
    line-height: 1.62;
    text-shadow:
        0 2px 14px rgba(19, 34, 56, 0.38);
}

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

.hero .button-ghost {
    background: rgba(19, 34, 56, 0.22);
    border-color: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(5px);
}

.hero .button-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--white);
}

@media (max-width: 1120px) {

    .hero {
        min-height: 570px;
        background:
            linear-gradient(
                90deg,
                rgba(19, 34, 56, 0.76) 0%,
                rgba(28, 62, 148, 0.52) 34%,
                rgba(33, 84, 216, 0.18) 56%,
                rgba(19, 34, 56, 0.02) 78%
            ),
            url("../images/home/home-hero-living-room.webp");
        background-size: cover;
        background-position: 62% center;
    }

    .hero-grid,
    .hero-grid-background {
        min-height: 570px;
        display: flex;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .hero-copy {
        width: min(100%, 610px);
        max-width: 610px;
    }

    .hero h1 {
        max-width: 600px;
        font-size: clamp(
            3.25rem,
            6vw,
            4.8rem
        );
    }

}

@media (max-width: 900px) {

    .hero {
        min-height: 560px;
        background:
            linear-gradient(
                90deg,
                rgba(19, 34, 56, 0.80) 0%,
                rgba(28, 62, 148, 0.58) 44%,
                rgba(19, 34, 56, 0.16) 78%,
                rgba(19, 34, 56, 0.04) 100%
            ),
            url("../images/home/home-hero-living-room.webp");
        background-size: cover;
        background-position: 66% center;
    }

    .hero-grid,
    .hero-grid-background {
        min-height: 560px;
        padding-top: 46px;
        padding-bottom: 46px;
    }

    .hero-copy {
        width: min(100%, 560px);
        max-width: 560px;
    }

}

@media (max-width: 680px) {

    .hero {
        min-height: 610px;
        background:
            linear-gradient(
                180deg,
                rgba(19, 34, 56, 0.36) 0%,
                rgba(19, 34, 56, 0.50) 36%,
                rgba(19, 34, 56, 0.74) 72%,
                rgba(19, 34, 56, 0.84) 100%
            ),
            url("../images/home/home-hero-living-room.webp");
        background-size: cover;
        background-position: 64% center;
    }

    .hero-grid,
    .hero-grid-background {
        min-height: 610px;
        display: flex;
        align-items: end;
        padding-top: 54px;
        padding-bottom: 44px;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero h1 {
        max-width: 520px;
        margin-bottom: 22px;
        font-size: clamp(
            2.9rem,
            12vw,
            4.1rem
        );
        line-height: 0.99;
    }

    .hero-intro {
        max-width: 500px;
        margin-bottom: 26px;
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .button {
        width: 100%;
    }

}

/* TAKE A SEAT PREMIUM BACKGROUND HERO END */

/* TAKE A SEAT PREMIUM BENEFIT STRIP START */

.benefit-strip {
    position: relative;
    z-index: 5;
    background: #FCFAF6;
    border-top: 1px solid rgba(19, 34, 56, 0.08);
    border-bottom: 1px solid rgba(19, 34, 56, 0.08);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefit-grid > div {
    position: relative;
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 34px 26px;
    border-right: 1px solid rgba(19, 34, 56, 0.10);
    transition:
        background 220ms ease,
        transform 220ms ease;
}

.benefit-grid > div:first-child {
    border-left: 1px solid rgba(19, 34, 56, 0.10);
}

.benefit-grid > div::before {
    content: "";
    width: 38px;
    height: 5px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: var(--blue);
}

.benefit-grid > div:nth-child(even)::before {
    background: var(--yellow);
}

.benefit-grid strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.2;
}

.benefit-grid span {
    display: block;
    max-width: 240px;
    color: var(--gray-700);
    font-size: 0.88rem;
    line-height: 1.5;
}

@media (hover: hover) {

    .benefit-grid > div:hover {
        z-index: 2;
        background: var(--white);
        transform: translateY(-3px);
    }

}

@media (max-width: 900px) {

    .benefit-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .benefit-grid > div {
        min-height: 116px;
    }

    .benefit-grid > div:nth-child(2) {
        border-right: 1px solid rgba(19, 34, 56, 0.10);
    }

    .benefit-grid > div:nth-child(3) {
        border-left: 1px solid rgba(19, 34, 56, 0.10);
    }

    .benefit-grid > div:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(19, 34, 56, 0.10);
    }

}

@media (max-width: 560px) {

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid > div,
    .benefit-grid > div:first-child,
    .benefit-grid > div:nth-child(3) {
        min-height: 102px;
        padding: 22px 0 20px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(19, 34, 56, 0.10);
    }

    .benefit-grid > div:last-child {
        border-bottom: 0;
    }

    .benefit-grid > div::before {
        width: 32px;
        height: 4px;
        margin-bottom: 11px;
    }

    .benefit-grid strong {
        font-size: 1rem;
    }

    .benefit-grid span {
        max-width: none;
    }

}

/* TAKE A SEAT PREMIUM BENEFIT STRIP END */

/* TAKE A SEAT PREMIUM CATEGORY MOSAIC START */

.categories-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.categories-section .section-heading {
    margin-bottom: 38px;
}

.categories-section .section-heading h2 {
    max-width: 820px;
}

@media (min-width: 901px) {

    .category-grid {
        display: grid;
        grid-template-columns: repeat(10, minmax(0, 1fr));
        grid-template-rows: repeat(2, 285px);
        gap: 22px;
    }

    .category-card {
        min-height: 0;
        height: 100%;
    }

    .category-card-large {
        grid-column: 1 / 7;
        grid-row: 1 / 3;
        min-height: 0;
    }

    .category-card:nth-child(2) {
        grid-column: 7 / 11;
        grid-row: 1;
    }

    .category-card:nth-child(3) {
        grid-column: 7 / 9;
        grid-row: 2;
    }

    .category-card:nth-child(4) {
        grid-column: 9 / 11;
        grid-row: 2;
    }

    .category-card:nth-child(3) .category-card-copy,
    .category-card:nth-child(4) .category-card-copy {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 14px 16px;
    }

    .category-card:nth-child(3) .category-card-copy span,
    .category-card:nth-child(4) .category-card-copy span {
        font-size: 1rem;
    }

    .category-card:nth-child(3) .category-card-copy strong,
    .category-card:nth-child(4) .category-card-copy strong {
        font-size: 0.74rem;
        line-height: 1.35;
    }

}

@media (min-width: 681px) and (max-width: 900px) {

    .category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .category-card-large {
        grid-column: 1 / -1;
        min-height: 440px;
    }

    .category-card:nth-child(4) {
        grid-column: 1 / -1;
        min-height: 300px;
    }

}

@media (max-width: 680px) {

    .categories-section {
        padding-top: 68px;
        padding-bottom: 68px;
    }

    .categories-section .section-heading {
        margin-bottom: 30px;
    }

}

/* TAKE A SEAT PREMIUM CATEGORY MOSAIC END */

/* TAKE A SEAT PREMIUM NEW ARRIVALS START */

.arrivals-section {
    position: relative;
    overflow: hidden;
    padding-top: 104px;
    padding-bottom: 108px;
    background:
        linear-gradient(
            180deg,
            #EAF0FF 0%,
            #F4F6FB 100%
        );
}

.arrivals-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(33, 84, 216, 0.06);
    pointer-events: none;
}

.arrivals-section .shell {
    position: relative;
    z-index: 2;
}

.arrivals-section .section-heading {
    margin-bottom: 40px;
}

.arrivals-section .section-heading h2 {
    max-width: 780px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow:
        0 0 0 1px rgba(19, 34, 56, 0.06),
        0 12px 32px rgba(19, 34, 56, 0.06);
    transition:
        transform 240ms ease,
        box-shadow 240ms ease;
}

.product-card > a {
    display: block;
    height: 100%;
}

.product-media {
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
    border-radius: 20px 20px 0 0;
    background: var(--gray-100);
}

.product-media .media-placeholder {
    min-height: 410px;
}

.product-media .site-photo {
    transition:
        transform 480ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.product-card-copy {
    min-height: 142px;
    display: flex;
    flex-direction: column;
    padding: 22px 22px 24px;
}

.product-category {
    margin-bottom: 7px;
    color: var(--gray-700);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.25;
}

.product-price {
    margin-top: auto;
    margin-bottom: 0;
    color: var(--blue);
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 800;
}

.product-badge {
    top: 16px;
    left: 16px;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    box-shadow:
        0 6px 18px rgba(19, 34, 56, 0.12);
}

@media (hover: hover) {

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow:
            0 0 0 1px rgba(19, 34, 56, 0.05),
            0 22px 48px rgba(19, 34, 56, 0.13);
    }

    .product-card:hover .site-photo {
        transform: scale(1.035);
    }

    .product-card:hover h3 {
        color: var(--blue);
    }

}

@media (max-width: 900px) {

    .arrivals-section {
        padding-top: 86px;
        padding-bottom: 90px;
    }

    .product-media .media-placeholder {
        min-height: 360px;
    }

}

@media (max-width: 680px) {

    .arrivals-section {
        padding-top: 70px;
        padding-bottom: 72px;
    }

    .arrivals-section .section-heading {
        margin-bottom: 32px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-media {
        border-radius: 16px 16px 0 0;
    }

    .product-card-copy {
        min-height: 130px;
        padding: 18px 16px 20px;
    }

    .product-media .media-placeholder {
        min-height: 250px;
    }

    .product-badge {
        top: 12px;
        left: 12px;
        padding: 7px 10px;
        font-size: 0.64rem;
    }

}

@media (max-width: 430px) {

    .product-media .media-placeholder {
        min-height: 340px;
    }

    .product-card-copy {
        min-height: 136px;
        padding: 20px 18px 22px;
    }

}

/* TAKE A SEAT PREMIUM NEW ARRIVALS END */

/* TAKE A SEAT PREMIUM ROOM RESET START */

.campaign-section {
    position: relative;
    overflow: hidden;
    padding: 54px 0;
    background: var(--navy);
}

.campaign-grid {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns:
        minmax(0, 1.45fr)
        minmax(380px, 0.72fr);
    overflow: hidden;
    border-radius: 26px;
    background: #101D30;
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.22);
}

.campaign-grid::after {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 34px;
    left: calc(67.5% - 3px);
    z-index: 4;
    width: 5px;
    border-radius: 999px;
    background: var(--yellow);
    pointer-events: none;
}

.campaign-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.campaign-media .media-placeholder {
    height: 100%;
    min-height: 560px;
    background: var(--navy);
}

.campaign-media .site-photo {
    object-fit: cover;
    object-position: center center;
    transition:
        transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.campaign-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 72%,
            rgba(16, 29, 48, 0.32) 100%
        );
}

.campaign-copy {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        64px
        clamp(42px, 4.5vw, 74px);
    background: #101D30;
    color: var(--white);
}

.campaign-copy::before {
    content: "ROOM RESET";
    display: block;
    width: max-content;
    max-width: none;
    margin-bottom: 22px;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: clamp(
        2.15rem,
        2.65vw,
        3rem
    );
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.campaign-copy .eyebrow {
    margin-bottom: 14px;
    color: var(--yellow);
}

.campaign-copy h2 {
    max-width: 500px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(
        2.5rem,
        3.5vw,
        4.2rem
    );
}

.campaign-copy p:not(.eyebrow) {
    max-width: 500px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1rem;
    line-height: 1.68;
}

.campaign-copy .button {
    align-self: flex-start;
}

@media (hover: hover) {

    .campaign-grid:hover .campaign-media .site-photo {
        transform: scale(1.025);
    }

}

@media (max-width: 1000px) {

    .campaign-grid {
        grid-template-columns:
            minmax(0, 1.12fr)
            minmax(340px, 0.88fr);
    }

    .campaign-grid::after {
        left: calc(56% - 3px);
    }

    .campaign-copy {
        padding:
            52px
            38px;
    }

}

@media (max-width: 780px) {

    .campaign-section {
        padding: 34px 0;
    }

    .campaign-grid {
        display: block;
        min-height: 0;
    }

    .campaign-grid::after {
        top: auto;
        right: 34px;
        bottom: auto;
        left: 34px;
        width: auto;
        height: 5px;
    }

    .campaign-media .media-placeholder {
        min-height: 430px;
    }

    .campaign-copy {
        padding: 52px 32px 54px;
    }

    .campaign-copy::before {
        margin-bottom: 18px;
        font-size: 2.8rem;
    }

}

@media (max-width: 560px) {

    .campaign-section {
        padding: 22px 0;
    }

    .campaign-grid {
        border-radius: 20px;
    }

    .campaign-media .media-placeholder {
        min-height: 340px;
    }

    .campaign-copy {
        padding: 44px 24px 46px;
    }

    .campaign-copy::before {
        font-size: 2.25rem;
    }

    .campaign-copy h2 {
        font-size: clamp(
            2.25rem,
            10vw,
            3.15rem
        );
    }

}
/* TAKE A SEAT ROOM RESET DIVIDER FIX START */

.campaign-grid::after {
    display: none;
}

.campaign-copy {
    border-left: 5px solid var(--yellow);
}

@media (max-width: 780px) {

    .campaign-copy {
        border-top: 5px solid var(--yellow);
        border-left: 0;
    }

}

/* TAKE A SEAT ROOM RESET DIVIDER FIX END */

/* TAKE A SEAT PREMIUM ROOM RESET END */

/* TAKE A SEAT ROOM RESET TYPE FIX START */

@media (min-width: 1001px) {

    .campaign-grid {
        grid-template-columns:
            minmax(0, 1.28fr)
            minmax(440px, 0.86fr);
    }

    .campaign-copy {
        padding:
            58px
            44px;
    }

    .campaign-copy h2 {
        max-width: 590px;
        font-size: clamp(
            2.65rem,
            3vw,
            3.35rem
        );
        line-height: 1.02;
        letter-spacing: -0.035em;
    }

    .campaign-copy p:not(.eyebrow) {
        max-width: 520px;
    }

}

@media (min-width: 781px) and (max-width: 1000px) {

    .campaign-grid {
        grid-template-columns:
            minmax(0, 1.05fr)
            minmax(390px, 0.95fr);
    }

    .campaign-copy {
        padding:
            48px
            34px;
    }

    .campaign-copy h2 {
        max-width: 500px;
        font-size: clamp(
            2.45rem,
            4vw,
            3.25rem
        );
        line-height: 1.03;
    }

}

/* TAKE A SEAT ROOM RESET TYPE FIX END */

/* TAKE A SEAT PREMIUM FINANCING START */

.financing-section {
    position: relative;
    overflow: hidden;
    padding-top: 94px;
    padding-bottom: 94px;
    background: var(--yellow);
}

.financing-section::before {
    display: none;
}

.financing-grid {
    position: relative;
    z-index: 2;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, 0.62fr);
    gap: clamp(
        56px,
        7vw,
        100px
    );
}

.financing-copy {
    max-width: 780px;
}

.financing-copy h2 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(
        2.9rem,
        4.4vw,
        4.9rem
    );
    line-height: 1.02;
}

.financing-copy > p:not(.eyebrow) {
    max-width: 650px;
    margin-bottom: 28px;
    font-size: 1.04rem;
    line-height: 1.65;
}

.finance-number {
    width: 100%;
    max-width: 390px;
    min-height: 300px;
    justify-self: end;
    padding: 42px 34px;
    border: 0;
    border-radius: 24px;
    background: var(--navy);
    color: var(--white);
    box-shadow:
        0 20px 50px rgba(19, 34, 56, 0.18);
}

.finance-number strong {
    color: var(--yellow);
    font-size: clamp(
        5rem,
        7vw,
        7.2rem
    );
    letter-spacing: -0.07em;
}

.finance-number span {
    max-width: 210px;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.45;
}

.finance-number::after {
    content: "On qualifying purchases";
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

@media (max-width: 900px) {

    .financing-section {
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .financing-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(280px, 0.52fr);
        gap: 44px;
    }

    .finance-number {
        max-width: 330px;
        min-height: 270px;
    }

}

@media (max-width: 680px) {

    .financing-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .financing-grid {
        display: block;
    }

    .financing-copy {
        max-width: none;
    }

    .finance-number {
        width: 100%;
        max-width: none;
        min-height: 240px;
        margin-top: 42px;
        border-radius: 20px;
    }

    .finance-number strong {
        font-size: clamp(
            4.5rem,
            18vw,
            6.3rem
        );
    }

}

/* TAKE A SEAT PREMIUM FINANCING END */

/* TAKE A SEAT FINANCING CARD TYPE FIX START */

.finance-number span {
    max-width: 230px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.4;
}

.finance-number::after {
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.35;
}

/* TAKE A SEAT FINANCING CARD TYPE FIX END */

/* TAKE A SEAT REAL ROOM CAPTIONS START */

.inspiration-card {
    position: relative;
    isolation: isolate;
}

.inspiration-card::after {
    content: "";
    position: absolute;
    inset:
        auto
        0
        0;
    z-index: 4;
    height: 46%;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(19, 34, 56, 0.00) 0%,
            rgba(19, 34, 56, 0.18) 24%,
            rgba(19, 34, 56, 0.82) 100%
        );
}

.inspiration-caption {
    position: absolute;
    right: 26px;
    bottom: 24px;
    left: 26px;
    z-index: 5;
    max-width: 520px;
    color: #FFFFFF;
    pointer-events: none;
}

.inspiration-caption h3 {
    margin: 0 0 7px;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 1.42rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.025em;
    text-shadow:
        0 2px 16px rgba(19, 34, 56, 0.35);
}

.inspiration-caption p {
    max-width: 440px;
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.48;
    text-shadow:
        0 2px 12px rgba(19, 34, 56, 0.42);
}

.inspiration-card-tall .inspiration-caption {
    right: 32px;
    bottom: 30px;
    left: 32px;
}

.inspiration-card-tall .inspiration-caption h3 {
    font-size: 1.72rem;
}

.inspiration-card-tall .inspiration-caption p {
    max-width: 500px;
    font-size: 0.96rem;
}

.inspiration-card:not(.inspiration-card-tall) .inspiration-caption {
    right: 20px;
    bottom: 18px;
    left: 20px;
}

.inspiration-card:not(.inspiration-card-tall) .inspiration-caption h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.inspiration-card:not(.inspiration-card-tall) .inspiration-caption p {
    max-width: 360px;
    font-size: 0.78rem;
    line-height: 1.4;
}

@media (max-width: 780px) {

    .inspiration-card::after {
        height: 52%;
    }

    .inspiration-caption,
    .inspiration-card-tall .inspiration-caption,
    .inspiration-card:not(.inspiration-card-tall) .inspiration-caption {
        right: 22px;
        bottom: 20px;
        left: 22px;
    }

    .inspiration-caption h3,
    .inspiration-card-tall .inspiration-caption h3,
    .inspiration-card:not(.inspiration-card-tall) .inspiration-caption h3 {
        font-size: 1.3rem;
    }

    .inspiration-caption p,
    .inspiration-card-tall .inspiration-caption p,
    .inspiration-card:not(.inspiration-card-tall) .inspiration-caption p {
        max-width: 440px;
        font-size: 0.84rem;
        line-height: 1.45;
    }

}

/* TAKE A SEAT REAL ROOM CAPTIONS END */

/* TAKE A SEAT REAL ROOM READABILITY START */

@media (min-width: 1200px) {

    .inspiration-section .heading-note {
        width: max-content;
        max-width: none;
        white-space: nowrap;
        font-size: 1rem;
    }

}

.inspiration-card:not(.inspiration-card-tall)::after {
    height: 54%;
}

.inspiration-card:not(.inspiration-card-tall) .inspiration-caption {
    right: 22px;
    bottom: 20px;
    left: 22px;
}

.inspiration-card:not(.inspiration-card-tall) .inspiration-caption h3 {
    margin-bottom: 6px;
    font-size: 1.18rem;
    line-height: 1.16;
}

.inspiration-card:not(.inspiration-card-tall) .inspiration-caption p {
    max-width: 390px;
    font-size: 0.84rem;
    line-height: 1.45;
}

@media (max-width: 1199px) {

    .inspiration-section .heading-note {
        width: auto;
        max-width: 340px;
        white-space: normal;
    }

}

/* TAKE A SEAT REAL ROOM READABILITY END */

/* TAKE A SEAT PREMIUM SERVICES START */

.services-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

.services-section .section-heading {
    margin-bottom: 38px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 0;
    background: transparent;
}

.service-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: 34px 30px 28px;
    border: 0;
    border-right: 1px solid rgba(19, 34, 56, 0.14);
    background: transparent;
    transition:
        background 220ms ease,
        color 220ms ease,
        transform 220ms ease,
        box-shadow 220ms ease;
}

.service-card:first-child {
    border-left: 1px solid rgba(19, 34, 56, 0.14);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 30px;
    width: 42px;
    height: 5px;
    border-radius: 999px;
    background: var(--blue);
}

.service-card:nth-child(even)::before {
    background: var(--yellow);
}

.service-number {
    position: absolute;
    top: 22px;
    right: 24px;
    margin: 0;
    color: rgba(33, 84, 216, 0.09);
    font-family: var(--font-display);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
}

.service-card h3 {
    position: relative;
    z-index: 2;
    margin-top: 34px;
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.38rem;
    line-height: 1.2;
}

.service-card p {
    position: relative;
    z-index: 2;
    max-width: 250px;
    margin-bottom: 20px;
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.55;
}

.service-card a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-top: 0;
    color: var(--blue);
    font-weight: 800;
}

.service-card a::after {
    content: "→";
    margin-left: 8px;
    transition: transform 180ms ease;
}

@media (hover: hover) {

    .service-card:hover {
        z-index: 2;
        background: var(--navy);
        color: var(--white);
        transform: translateY(-4px);
        box-shadow:
            0 16px 36px rgba(19, 34, 56, 0.16);
    }

    .service-card:hover .service-number {
        color: rgba(246, 196, 69, 0.16);
    }

    .service-card:hover h3,
    .service-card:hover a {
        color: var(--yellow);
    }

    .service-card:hover p {
        color: rgba(255, 255, 255, 0.80);
    }

    .service-card:hover a::after {
        transform: translateX(4px);
    }

}

@media (max-width: 900px) {

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-card {
        min-height: 230px;
        border-bottom: 1px solid rgba(19, 34, 56, 0.14);
    }

    .service-card:nth-child(2n + 1) {
        border-left: 1px solid rgba(19, 34, 56, 0.14);
    }

}

@media (max-width: 680px) {

    .services-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .service-grid {
        display: block;
    }

    .service-card,
    .service-card:first-child,
    .service-card:nth-child(2n + 1) {
        min-height: 0;
        padding: 30px 0 28px;
        border-right: 0;
        border-left: 0;
        border-bottom: 1px solid rgba(19, 34, 56, 0.14);
    }

    .service-card:last-child {
        border-bottom: 0;
    }

    .service-card::before {
        left: 0;
    }

    .service-number {
        top: 20px;
        right: 0;
        font-size: 3.6rem;
    }

    .service-card h3 {
        margin-top: 30px;
    }

    .service-card p {
        max-width: 420px;
    }

}

/* TAKE A SEAT PREMIUM SERVICES END */

/* TAKE A SEAT PREMIUM SHOWROOM START */

.showroom-section {
    padding-top: 88px;
    padding-bottom: 88px;
    background: var(--blue);
}

.showroom-grid {
    display: grid;
    grid-template-columns:
        minmax(360px, 0.78fr)
        minmax(0, 1.32fr);
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border-radius: 28px;
    background: var(--navy);
    box-shadow:
        0 26px 64px rgba(19, 34, 56, 0.22);
}

.showroom-copy {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        64px
        clamp(42px, 4vw, 68px);
    background: var(--navy);
    color: var(--white);
    border-right: 5px solid var(--yellow);
}

.showroom-copy .eyebrow {
    margin-bottom: 16px;
    color: var(--yellow);
}

.showroom-copy h2 {
    max-width: 520px;
    margin-bottom: 22px;
    color: var(--white);
    font-size: clamp(
        2.8rem,
        3.8vw,
        4.5rem
    );
    line-height: 1.01;
    letter-spacing: -0.04em;
}

.showroom-copy > p:not(.eyebrow) {
    max-width: 560px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.02rem;
    line-height: 1.68;
}

.showroom-details {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-bottom: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.20);
}

.showroom-details span {
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.showroom-details strong {
    color: var(--white);
    font-size: 0.98rem;
    font-weight: 700;
    line-height: 1.5;
}

.showroom-copy .button {
    align-self: flex-start;
}

.showroom-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.showroom-media .media-placeholder {
    height: 100%;
    min-height: 610px;
    border-radius: 0;
    background: var(--navy);
}

.showroom-media .site-photo {
    object-fit: cover;
    object-position: center center;
    transition:
        transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

@media (hover: hover) {

    .showroom-grid:hover .showroom-media .site-photo {
        transform: scale(1.025);
    }

}

@media (max-width: 980px) {

    .showroom-grid {
        grid-template-columns:
            minmax(330px, 0.9fr)
            minmax(0, 1.1fr);
    }

    .showroom-copy {
        padding:
            52px
            36px;
    }

    .showroom-copy h2 {
        font-size: clamp(
            2.45rem,
            4.8vw,
            3.7rem
        );
    }

}

@media (max-width: 780px) {

    .showroom-section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .showroom-grid {
        display: flex;
        flex-direction: column-reverse;
        border-radius: 22px;
    }

    .showroom-copy {
        padding:
            46px
            30px
            50px;
        border-top: 5px solid var(--yellow);
        border-right: 0;
    }

    .showroom-media .media-placeholder {
        min-height: 420px;
    }

}

@media (max-width: 560px) {

    .showroom-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .showroom-grid {
        border-radius: 18px;
    }

    .showroom-copy {
        padding:
            40px
            24px
            44px;
    }

    .showroom-copy h2 {
        font-size: clamp(
            2.35rem,
            10vw,
            3.2rem
        );
    }

    .showroom-details {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .showroom-media .media-placeholder {
        min-height: 340px;
    }

}

/* TAKE A SEAT PREMIUM SHOWROOM END */

/* TAKE A SEAT INSPIRATION MOBILE IMAGE FIX START */

@media (max-width: 780px) {

    .inspiration-grid {
        display: block;
    }

    .inspiration-card,
    .inspiration-card-tall {
        min-height: 0;
        height: auto;
        grid-row: auto;
    }

    .inspiration-card + .inspiration-card {
        margin-top: 20px;
    }

    .inspiration-card .media-placeholder {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .inspiration-card:not(.inspiration-card-tall) .media-placeholder {
        aspect-ratio: 16 / 10;
    }

    .inspiration-card .site-photo {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 3 !important;
    }

}

@media (max-width: 520px) {

    .inspiration-card .media-placeholder,
    .inspiration-card:not(.inspiration-card-tall) .media-placeholder {
        aspect-ratio: 4 / 3;
    }

}

/* TAKE A SEAT INSPIRATION MOBILE IMAGE FIX END */

/* TAKE A SEAT PREMIUM FOOTER BRAND START */

.footer-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(100%, 390px);
    padding: 18px 22px;
    border-radius: 18px;
    background: #FCFAF6;
}

.footer-logo-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 92px;
    object-fit: contain;
    object-position: left center;
}

.footer-brand p {
    max-width: 390px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 900px) {

    .footer-logo {
        width: min(100%, 340px);
    }

    .footer-logo-image {
        max-height: 82px;
    }

}

@media (max-width: 560px) {

    .footer-logo {
        width: min(100%, 290px);
        padding: 14px 18px;
        border-radius: 14px;
    }

    .footer-logo-image {
        max-height: 70px;
    }

    .footer-brand p {
        max-width: 340px;
    }

}

/* TAKE A SEAT PREMIUM FOOTER BRAND END */

/* TAKE A SEAT FOOTER BOTTOM READABILITY START */

.footer-bottom {
    border-top-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.82rem;
    line-height: 1.5;
}

/* TAKE A SEAT FOOTER BOTTOM READABILITY END */

/* TAKE A SEAT PREMIUM SHOP PAGE START */

/* Shop hero */

.shop-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0 78px;
    background:
        linear-gradient(
            115deg,
            rgba(20, 58, 155, 0.98) 0%,
            rgba(20, 58, 155, 0.96) 58%,
            rgba(12, 38, 104, 0.98) 100%
        );
    color: #ffffff;
}

.shop-hero::before {
    content: "";
    position: absolute;
    top: -190px;
    right: -120px;
    width: 430px;
    height: 430px;
    border: 76px solid rgba(255, 201, 31, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.shop-hero::after {
    content: "";
    position: absolute;
    right: 7%;
    bottom: -90px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.shop-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
    align-items: end;
    gap: 80px;
}

.shop-hero-copy {
    max-width: 840px;
}

.shop-hero .eyebrow {
    margin-bottom: 18px;
    color: var(--yellow);
}

.shop-hero h1 {
    max-width: 780px;
    margin: 0;
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 6vw, 6.3rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.94;
}

.shop-hero-intro {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
    line-height: 1.7;
}

.shop-hero-note {
    padding: 24px 0 5px 28px;
    border-left: 4px solid var(--yellow);
}

.shop-hero-note strong,
.shop-hero-note span {
    display: block;
}

.shop-hero-note strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.shop-hero-note span {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
    line-height: 1.5;
}


/* Category controls */

.shop-controls-section {
    position: relative;
    z-index: 3;
    background: #ffffff;
    border-bottom: 1px solid rgba(20, 58, 155, 0.1);
    box-shadow: 0 10px 28px rgba(17, 32, 58, 0.05);
}

.shop-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 78px;
}

.shop-category-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.shop-category-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 16px;
    border-radius: 999px;
    color: var(--navy);
    font-size: 0.88rem;
    font-weight: 750;
    line-height: 1;
    transition:
        background-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.shop-category-link:hover {
    background: rgba(20, 58, 155, 0.08);
    color: var(--blue);
    transform: translateY(-1px);
}

.shop-category-link.is-active {
    background: var(--blue);
    color: #ffffff;
}

.shop-result-count {
    flex-shrink: 0;
    color: rgba(10, 20, 34, 0.55);
    font-size: 0.82rem;
    font-weight: 750;
}


/* Product floor */

.shop-products-section {
    padding: 92px 0 108px;
    background: #f5f8fc;
}

.shop-products-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 72px;
    margin-bottom: 48px;
}

.shop-products-heading .eyebrow {
    margin-bottom: 12px;
}

.shop-products-heading h2 {
    max-width: 720px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.25rem, 4vw, 4.1rem);
    letter-spacing: -0.045em;
    line-height: 1;
}

.shop-products-heading > p {
    max-width: 460px;
    margin: 0;
    color: rgba(10, 20, 34, 0.64);
    font-size: 0.98rem;
    line-height: 1.65;
}

.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
}

.shop-product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(20, 58, 155, 0.09);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(17, 32, 58, 0.055);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(20, 58, 155, 0.18);
    box-shadow: 0 20px 42px rgba(17, 32, 58, 0.11);
}

.shop-product-card > a {
    display: block;
    height: 100%;
    color: inherit;
}

.shop-product-card .product-media {
    position: relative;
    overflow: hidden;
    background: #eaf0f8;
}

.shop-product-card .media-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            #edf2f8 0%,
            #e5ecf5 100%
        );
}

.shop-product-card .site-photo {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    visibility: visible;
    transition: transform 320ms ease;
}

.shop-product-card:hover .site-photo {
    transform: scale(1.035);
}

.shop-product-card .product-badge {
    position: absolute;
    z-index: 3;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 11px;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--navy);
    font-size: 0.69rem;
    font-weight: 850;
    letter-spacing: 0.035em;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 5px 16px rgba(10, 20, 34, 0.12);
}

.shop-product-card .product-card-copy {
    display: flex;
    flex-direction: column;
    min-height: 218px;
    padding: 22px 20px 24px;
}

.shop-product-card .product-category {
    margin: 0 0 9px;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.075em;
    line-height: 1.2;
    text-transform: uppercase;
}

.shop-product-card h3 {
    margin: 0;
    color: var(--navy);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.22;
}

.shop-product-card .product-detail {
    margin: 12px 0 0;
    color: rgba(10, 20, 34, 0.62);
    font-size: 0.84rem;
    line-height: 1.55;
}

.shop-product-card .product-price {
    margin: auto 0 0;
    padding-top: 18px;
    color: var(--navy);
    font-size: 1rem;
    font-weight: 850;
}


/* Design help */

.shop-help-section {
    padding: 84px 0;
    background: var(--yellow);
    color: var(--navy);
}

.shop-help-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: center;
    gap: 84px;
}

.shop-help-section .eyebrow {
    margin-bottom: 12px;
    color: var(--blue);
}

.shop-help-section h2 {
    max-width: 730px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.35rem, 4vw, 4.4rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.shop-help-copy {
    max-width: 460px;
}

.shop-help-copy p {
    margin: 0 0 24px;
    color: rgba(10, 20, 34, 0.74);
    font-size: 1rem;
    line-height: 1.65;
}

.shop-help-section .button-yellow {
    background: var(--navy);
    color: #ffffff;
}

.shop-help-section .button-yellow:hover {
    background: var(--blue);
    color: #ffffff;
}


/* Tablet */

@media (max-width: 1100px) {

    .shop-hero-grid {
        grid-template-columns: minmax(0, 1fr) 260px;
        gap: 48px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shop-products-heading {
        gap: 46px;
    }

    .shop-help-grid {
        gap: 56px;
    }

}


/* Small tablet */

@media (max-width: 820px) {

    .shop-hero {
        padding: 74px 0 64px;
    }

    .shop-hero-grid {
        display: block;
    }

    .shop-hero-copy {
        max-width: 700px;
    }

    .shop-hero h1 {
        font-size: clamp(3rem, 9vw, 5rem);
    }

    .shop-hero-note {
        max-width: 420px;
        margin-top: 42px;
    }

    .shop-controls {
        display: block;
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .shop-category-nav {
        gap: 7px;
    }

    .shop-result-count {
        margin-top: 14px;
    }

    .shop-products-section {
        padding: 74px 0 84px;
    }

    .shop-products-heading {
        display: block;
        margin-bottom: 38px;
    }

    .shop-products-heading > p {
        margin-top: 20px;
    }

    .shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .shop-help-grid {
        display: block;
    }

    .shop-help-copy {
        margin-top: 28px;
    }

}


/* Mobile */

@media (max-width: 560px) {

    .shop-hero {
        padding: 62px 0 54px;
    }

    .shop-hero::before {
        top: -150px;
        right: -190px;
        width: 360px;
        height: 360px;
        border-width: 60px;
    }

    .shop-hero h1 {
        font-size: clamp(2.75rem, 14vw, 4.25rem);
        line-height: 0.96;
    }

    .shop-hero-intro {
        margin-top: 22px;
        font-size: 0.98rem;
    }

    .shop-hero-note {
        margin-top: 34px;
        padding: 17px 0 2px 18px;
    }

    .shop-controls {
        min-height: 0;
    }

    .shop-category-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .shop-category-link {
        width: 100%;
        min-height: 42px;
        padding-inline: 10px;
    }

    .shop-products-section {
        padding: 62px 0 70px;
    }

    .shop-products-heading h2 {
        font-size: clamp(2.2rem, 11vw, 3.2rem);
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .shop-product-card .media-placeholder {
        aspect-ratio: 4 / 3;
    }

    .shop-product-card .product-card-copy {
        min-height: 0;
    }

    .shop-product-card .product-price {
        margin-top: 18px;
    }

    .shop-help-section {
        padding: 64px 0;
    }

    .shop-help-section h2 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

}

/* TAKE A SEAT PREMIUM SHOP PAGE END */

/* TAKE A SEAT SHOP HERO IMAGE START */

.shop-hero {
    background:
        linear-gradient(
            90deg,
            rgba(18, 52, 145, 0.68) 0%,
            rgba(18, 52, 145, 0.56) 32%,
            rgba(18, 52, 145, 0.30) 56%,
            rgba(8, 26, 67, 0.12) 100%
        ),
        url("../images/shop/shop-hero-showroom.webp")
        center right / cover
        no-repeat;
}

.shop-hero::before {
    opacity: 0.08;
}

.shop-hero::after {
    opacity: 0.06;
}

@media (max-width: 820px) {

    .shop-hero {
        background:
            linear-gradient(
                90deg,
                rgba(18, 52, 145, 0.78) 0%,
                rgba(18, 52, 145, 0.60) 52%,
                rgba(8, 26, 67, 0.28) 100%
            ),
            url("../images/shop/shop-hero-showroom.webp")
            68% center / cover
            no-repeat;
    }

}

@media (max-width: 560px) {

    .shop-hero {
        background:
            linear-gradient(
                180deg,
                rgba(18, 52, 145, 0.76) 0%,
                rgba(18, 52, 145, 0.60) 56%,
                rgba(8, 26, 67, 0.34) 100%
            ),
            url("../images/shop/shop-hero-showroom.webp")
            72% center / cover
            no-repeat;
    }

}

/* TAKE A SEAT SHOP HERO IMAGE END */

/* TAKE A SEAT SHOP HELP DESKTOP TYPE START */

@media (min-width: 821px) {

    .shop-help-grid {
        grid-template-columns: minmax(0, 1.5fr) minmax(330px, 0.5fr);
        gap: 64px;
    }

    .shop-help-section h2 {
        max-width: 900px;
    }

}

/* TAKE A SEAT SHOP HELP DESKTOP TYPE END */

/* TAKE A SEAT SHOP HELP LINE STYLE START */

.shop-help-line {
    display: block;
    color: var(--navy);
}

.shop-help-line-accent {
    margin-top: 0.18em;
    color: var(--blue);
}

@media (min-width: 821px) {

    .shop-help-section h2 {
        max-width: none;
        font-size: clamp(2.8rem, 3.75vw, 4.15rem);
        line-height: 0.98;
    }

    .shop-help-line {
        white-space: nowrap;
    }

}

@media (max-width: 820px) {

    .shop-help-line {
        white-space: normal;
    }

}

/* TAKE A SEAT SHOP HELP LINE STYLE END */

/* TAKE A SEAT PREMIUM COLLECTIONS PAGE START */

/* Collections hero */

.collections-hero {
    position: relative;
    overflow: hidden;
    padding: 98px 0 86px;
    background:
        linear-gradient(
            118deg,
            #0f2553 0%,
            #143a9b 64%,
            #1d51ca 100%
        );
    color: #ffffff;
}

.collections-hero::before {
    content: "";
    position: absolute;
    top: -160px;
    right: 7%;
    width: 360px;
    height: 360px;
    border: 68px solid rgba(255, 201, 31, 0.11);
    border-radius: 50%;
    pointer-events: none;
}

.collections-hero::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -150px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.collections-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.5fr);
    align-items: end;
    gap: 82px;
}

.collections-hero-copy {
    max-width: 920px;
}

.collections-hero .eyebrow {
    margin-bottom: 18px;
    color: var(--yellow);
}

.collections-hero h1 {
    max-width: 900px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3.25rem, 5.6vw, 6.3rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.94;
}

.collections-hero-intro {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.06rem;
    line-height: 1.68;
}

.collections-hero-note {
    max-width: 360px;
    padding: 24px 0 6px 28px;
    border-left: 4px solid var(--yellow);
}

.collections-hero-note strong,
.collections-hero-note span {
    display: block;
}

.collections-hero-note strong {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.collections-hero-note span {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.84rem;
    line-height: 1.55;
}


/* Room collections */

.collections-room-section {
    padding: 96px 0 112px;
    background: #f4f7fb;
}

.collections-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 74px;
    margin-bottom: 50px;
}

.collections-section-heading .eyebrow {
    margin-bottom: 12px;
}

.collections-section-heading h2 {
    max-width: 760px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.5rem, 4.1vw, 4.5rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.collections-section-heading > p {
    max-width: 440px;
    margin: 0;
    color: rgba(10, 20, 34, 0.64);
    font-size: 0.98rem;
    line-height: 1.65;
}

.collections-grid {
    display: grid;
    grid-template-columns: 1.32fr 0.84fr 0.84fr;
    grid-template-rows: repeat(2, minmax(330px, 1fr));
    gap: 22px;
}

.collection-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #dfe7f2;
    box-shadow: 0 14px 34px rgba(17, 32, 58, 0.08);
}

.collection-card-large {
    grid-row: 1 / 3;
}

.collection-card > a {
    position: relative;
    display: block;
    height: 100%;
    min-height: inherit;
    color: #ffffff;
}

.collection-card-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.collection-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(7, 17, 37, 0.02) 28%,
            rgba(7, 17, 37, 0.34) 66%,
            rgba(7, 17, 37, 0.88) 100%
        );
}

.collection-card .site-photo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 1;
    visibility: visible;
    transition: transform 420ms ease;
}

.collection-card:hover .site-photo {
    transform: scale(1.035);
}

.collection-card-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 28px;
}

.collection-card-large .collection-card-copy {
    padding: 38px;
}

.collection-card-kicker {
    margin: 0 0 10px;
    color: var(--yellow);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.085em;
    line-height: 1.2;
    text-transform: uppercase;
}

.collection-card h3 {
    max-width: 520px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.35rem, 2.1vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.08;
}

.collection-card:not(.collection-card-large) h3 {
    max-width: 330px;
    font-size: clamp(1.2rem, 1.55vw, 1.55rem);
}

.collection-card-link {
    display: inline-flex;
    align-items: center;
    margin-top: 18px;
    color: #ffffff;
    font-size: 0.83rem;
    font-weight: 800;
}

.collection-card-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.collection-card:hover .collection-card-link::after {
    transform: translateX(4px);
}


/* Whole room feature */

.collections-feature-section {
    padding: 108px 0;
    background: var(--navy);
}

.collections-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(360px, 0.7fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 28px;
    background: #0d1f3c;
    box-shadow: 0 24px 56px rgba(5, 15, 32, 0.2);
}

.collections-feature-media {
    position: relative;
    min-height: 620px;
    overflow: hidden;
}

.collections-feature-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(13, 31, 60, 0.02) 65%,
            rgba(13, 31, 60, 0.25) 100%
        );
    pointer-events: none;
}

.collections-feature-media .site-photo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms ease;
}

.collections-feature-grid:hover .collections-feature-media .site-photo {
    transform: scale(1.025);
}

.collections-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 62px 54px;
    border-left: 5px solid var(--yellow);
}

.collections-feature-copy .eyebrow {
    margin-bottom: 14px;
    color: var(--yellow);
}

.collections-feature-copy h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.5rem, 3.8vw, 4.5rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.collections-feature-copy > p {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.72;
}

.collections-feature-copy .button {
    align-self: flex-start;
    margin-top: 30px;
}


/* Collection help */

.collections-help-section {
    padding: 88px 0;
    background: var(--yellow);
}

.collections-help-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
    align-items: center;
    gap: 78px;
}

.collections-help-section .eyebrow {
    margin-bottom: 12px;
    color: var(--blue);
}

.collections-help-section h2 {
    max-width: 850px;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2.5rem, 4vw, 4.45rem);
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.collections-help-copy {
    max-width: 470px;
}

.collections-help-copy p {
    margin: 0 0 26px;
    color: rgba(10, 20, 34, 0.74);
    font-size: 1rem;
    line-height: 1.68;
}


/* Tablet */

@media (max-width: 1100px) {

    .collections-hero-grid {
        grid-template-columns: minmax(0, 1fr) 270px;
        gap: 48px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: auto;
    }

    .collection-card,
    .collection-card-large {
        min-height: 380px;
        grid-row: auto;
    }

    .collection-card-large {
        grid-column: 1 / -1;
        min-height: 540px;
    }

    .collections-feature-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
    }

    .collections-feature-copy {
        padding: 50px 40px;
    }

}


/* Small tablet */

@media (max-width: 820px) {

    .collections-hero {
        padding: 76px 0 66px;
    }

    .collections-hero-grid {
        display: block;
    }

    .collections-hero h1 {
        font-size: clamp(3rem, 9vw, 5rem);
    }

    .collections-hero-note {
        margin-top: 42px;
    }

    .collections-room-section {
        padding: 74px 0 84px;
    }

    .collections-section-heading {
        display: block;
        margin-bottom: 38px;
    }

    .collections-section-heading > p {
        margin-top: 20px;
    }

    .collections-grid {
        grid-template-columns: 1fr 1fr;
    }

    .collection-card-large {
        min-height: 470px;
    }

    .collection-card {
        min-height: 330px;
    }

    .collections-feature-section {
        padding: 78px 0;
    }

    .collections-feature-grid {
        display: flex;
        flex-direction: column;
    }

    .collections-feature-media {
        min-height: 430px;
    }

    .collections-feature-copy {
        padding: 44px 38px 48px;
        border-left: 0;
        border-top: 5px solid var(--yellow);
    }

    .collections-help-grid {
        display: block;
    }

    .collections-help-copy {
        margin-top: 30px;
    }

}


/* Mobile */

@media (max-width: 560px) {

    .collections-hero {
        padding: 62px 0 56px;
    }

    .collections-hero::before {
        top: -170px;
        right: -180px;
        width: 350px;
        height: 350px;
        border-width: 58px;
    }

    .collections-hero h1 {
        font-size: clamp(2.75rem, 13.5vw, 4rem);
    }

    .collections-hero-intro {
        margin-top: 22px;
        font-size: 0.98rem;
    }

    .collections-hero-note {
        margin-top: 34px;
        padding: 18px 0 2px 18px;
    }

    .collections-room-section {
        padding: 62px 0 70px;
    }

    .collections-section-heading h2 {
        font-size: clamp(2.25rem, 11vw, 3.15rem);
    }

    .collections-grid {
        display: block;
    }

    .collection-card,
    .collection-card-large {
        min-height: 0;
        margin-bottom: 20px;
    }

    .collection-card > a {
        min-height: 390px;
    }

    .collection-card-large > a {
        min-height: 460px;
    }

    .collection-card-copy,
    .collection-card-large .collection-card-copy {
        padding: 26px 24px;
    }

    .collection-card h3,
    .collection-card:not(.collection-card-large) h3 {
        max-width: 360px;
        font-size: 1.45rem;
    }

    .collections-feature-section {
        padding: 64px 0;
    }

    .collections-feature-media {
        min-height: 330px;
    }

    .collections-feature-copy {
        padding: 34px 26px 38px;
    }

    .collections-feature-copy h2 {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
    }

    .collections-help-section {
        padding: 66px 0;
    }

    .collections-help-section h2 {
        font-size: clamp(2.25rem, 11vw, 3.2rem);
    }

}

/* TAKE A SEAT PREMIUM COLLECTIONS PAGE END */

/* TAKE A SEAT COLLECTIONS HERO IMAGE START */

.collections-hero {
    background:
        linear-gradient(
            90deg,
            rgba(7, 22, 52, 0.46) 0%,
            rgba(13, 35, 82, 0.33) 32%,
            rgba(20, 58, 155, 0.18) 54%,
            rgba(8, 20, 44, 0.06) 100%
        ),
        url("../images/collections/collections-hero-flagship.webp")
        center right / cover
        no-repeat;
}

.collections-hero::before,
.collections-hero::after {
    display: none;
}

.collections-hero-note {
    padding: 24px 26px 24px 28px;
    border-left: 4px solid var(--yellow);
    border-radius: 0 14px 14px 0;
    background: rgba(7, 20, 49, 0.24);
    backdrop-filter: blur(2px);
}

.collections-hero-note strong {
    color: #ffffff;
}

.collections-hero-note span {
    color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 820px) {

    .collections-hero {
        background:
            linear-gradient(
                90deg,
                rgba(7, 22, 52, 0.50) 0%,
                rgba(13, 35, 82, 0.34) 52%,
                rgba(8, 20, 44, 0.12) 100%
            ),
            url("../images/collections/collections-hero-flagship.webp")
            66% center / cover
            no-repeat;
    }

}

@media (max-width: 560px) {

    .collections-hero {
        background:
            linear-gradient(
                180deg,
                rgba(7, 22, 52, 0.52) 0%,
                rgba(13, 35, 82, 0.34) 56%,
                rgba(8, 20, 44, 0.22) 100%
            ),
            url("../images/collections/collections-hero-flagship.webp")
            70% center / cover
            no-repeat;
    }

    .collections-hero-note {
        background: rgba(7, 20, 49, 0.28);
    }

}

/* TAKE A SEAT COLLECTIONS HERO IMAGE END */

/* TAKE A SEAT COLLECTIONS FEATURE TYPE FIX START */

@media (min-width: 821px) {

    .collections-feature-grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
    }

    .collections-feature-copy {
        padding: 62px 48px;
    }

    .collections-feature-copy h2 {
        max-width: 540px;
        font-size: clamp(2.8rem, 3.45vw, 4rem);
        line-height: 1.07;
    }

}

/* TAKE A SEAT COLLECTIONS FEATURE TYPE FIX END */

/* TAKE A SEAT COLLECTIONS HELP CTA START */

.collections-help-section a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 54px;
    margin-top: 24px;
    padding: 0 26px;
    border: 2px solid #0b2148;
    border-radius: 999px;
    background: #0b2148;
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition:
        transform 160ms ease,
        background-color 160ms ease,
        color 160ms ease;
}

 {
    transform: translateY(-2px);
    background: #ffffff;
    color: #0b2148;
}

-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

/* TAKE A SEAT COLLECTIONS HELP CTA END */

/* TAKE A SEAT PREMIUM SALE PAGE START */

/* Sale hero */

.sale-page {
    background: #f5f7fb;
    color: #0b2148;
}

.sale-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(255, 200, 56, 0.22) 0,
            rgba(255, 200, 56, 0) 26%
        ),
        linear-gradient(
            135deg,
            #123a9b 0%,
            #0e2f80 48%,
            #081c42 100%
        );
    color: #ffffff;
}

.sale-hero::before {
    content: "";
    position: absolute;
    width: 540px;
    height: 540px;
    right: -170px;
    bottom: -330px;
    border: 72px solid rgba(255, 200, 56, 0.13);
    border-radius: 50%;
    pointer-events: none;
}

.sale-hero::after {
    content: "SALE";
    position: absolute;
    right: 2vw;
    bottom: -0.16em;
    font-size: clamp(9rem, 19vw, 22rem);
    font-weight: 900;
    line-height: 0.76;
    letter-spacing: -0.07em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
    user-select: none;
}

.sale-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: clamp(48px, 7vw, 112px);
    align-items: end;
    min-height: 620px;
    padding-top: 104px;
    padding-bottom: 108px;
}

.sale-hero-copy {
    max-width: 880px;
}

.sale-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.sale-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(4rem, 6vw, 6.8rem);
    line-height: 0.91;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.sale-hero h1 span {
    display: block;
    margin-top: 0.14em;
    color: #ffc838;
}

.sale-hero-intro {
    max-width: 720px;
    margin: 34px 0 0;
    font-size: clamp(1.08rem, 1.25vw, 1.28rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.sale-hero-note {
    display: grid;
    gap: 5px;
    max-width: 650px;
    margin-top: 36px;
    padding: 20px 22px;
    border-left: 4px solid #ffc838;
    background: rgba(3, 18, 49, 0.3);
    backdrop-filter: blur(4px);
}

.sale-hero-note strong {
    font-size: 1rem;
    color: #ffffff;
}

.sale-hero-note span {
    font-size: 0.93rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
}

.sale-hero-side {
    align-self: center;
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background: rgba(4, 20, 54, 0.46);
    backdrop-filter: blur(8px);
}

.sale-hero-side p {
    margin: 0 0 22px;
    font-size: clamp(1.65rem, 2.4vw, 2.45rem);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.sale-hero-side .btn {
    min-height: 54px;
    padding-inline: 26px;
    border-color: #ffc838;
    background: #ffc838;
    color: #071b3f;
    font-weight: 800;
}

.sale-hero-side .btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #071b3f;
}


/* Sale information strip */

.sale-strip {
    background: #ffc838;
    border-bottom: 1px solid rgba(7, 27, 63, 0.14);
}

.sale-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sale-strip-grid > div {
    display: grid;
    gap: 6px;
    padding: 30px 34px;
    border-right: 1px solid rgba(7, 27, 63, 0.18);
}

.sale-strip-grid > div:first-child {
    padding-left: 0;
}

.sale-strip-grid > div:last-child {
    border-right: 0;
    padding-right: 0;
}

.sale-strip strong {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    color: #0b3aa5;
}

.sale-strip span {
    max-width: 360px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #071b3f;
}


/* Sale product floor */

.sale-floor {
    padding-top: 112px;
    padding-bottom: 118px;
    background: #f5f7fb;
}

.sale-floor-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 54px;
}

.sale-floor-heading .eyebrow {
    margin-bottom: 14px;
    color: #0b43c5;
}

.sale-floor-heading h2 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(3rem, 4.8vw, 5.25rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.sale-floor-heading > p {
    max-width: 500px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5870;
}

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

.sale-card {
    overflow: hidden;
    border: 1px solid #dce2ec;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(8, 26, 67, 0.06);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease;
}

.sale-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(8, 26, 67, 0.11);
}

.sale-card-media {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 1.32 / 1;
    background: #e8edf5;
}

.sale-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 300ms ease;
}

.sale-card:hover .sale-card-media img {
    transform: scale(1.025);
}

.sale-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.sale-card-body {
    padding: 24px 24px 27px;
}

.sale-card-category {
    margin: 0 0 7px;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0b43c5;
}

.sale-card h3 {
    margin: 0;
    font-size: clamp(1.45rem, 1.7vw, 1.8rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
}

.sale-card h3 a {
    color: #071b3f;
    text-decoration: none;
}

.sale-card h3 a:hover {
    color: #0b43c5;
}

.sale-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 10px;
    margin-top: 18px;
}

.sale-price-now {
    font-size: 1.45rem;
    font-weight: 900;
    color: #0b43c5;
}

.sale-price-was {
    font-size: 0.98rem;
    font-weight: 700;
    color: #7c879a;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.sale-card-body > p:last-child {
    margin: 16px 0 0;
    font-size: 0.95rem;
    line-height: 1.58;
    color: #5b667a;
}


/* Final sale callout */

.sale-final {
    position: relative;
    overflow: hidden;
    padding: 108px 0;
    background: #0a1d42;
    color: #ffffff;
}

.sale-final::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    right: -130px;
    top: -210px;
    border: 56px solid rgba(255, 200, 56, 0.11);
    border-radius: 50%;
}

.sale-final-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.55fr);
    gap: 76px;
    align-items: center;
}

.sale-final .eyebrow {
    margin-bottom: 14px;
    color: #ffc838;
}

.sale-final h2 {
    max-width: 850px;
    margin: 0;
    font-size: clamp(3rem, 4.8vw, 5.2rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.sale-final-grid > div:last-child {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.sale-final-grid > div:last-child p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.sale-final .btn {
    min-height: 54px;
    padding-inline: 26px;
    border-color: #ffc838;
    background: #ffc838;
    color: #071b3f;
    font-weight: 800;
}

.sale-final .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}


/* Sale responsive */

@media (max-width: 1100px) {

    .sale-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 0.48fr);
        gap: 42px;
    }

    .sale-hero h1 {
        font-size: clamp(3.7rem, 6.3vw, 5.4rem);
    }

    .sale-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sale-floor-heading {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
        gap: 42px;
    }

    .sale-final-grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
        gap: 50px;
    }
}

@media (max-width: 820px) {

    .sale-hero-grid {
        grid-template-columns: 1fr;
        align-items: start;
        min-height: auto;
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .sale-hero-side {
        width: min(100%, 520px);
        padding: 28px;
    }

    .sale-strip-grid {
        grid-template-columns: 1fr;
    }

    .sale-strip-grid > div,
    .sale-strip-grid > div:first-child,
    .sale-strip-grid > div:last-child {
        padding: 24px 0;
        border-right: 0;
        border-bottom: 1px solid rgba(7, 27, 63, 0.16);
    }

    .sale-strip-grid > div:last-child {
        border-bottom: 0;
    }

    .sale-floor {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .sale-floor-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .sale-floor-heading > p {
        max-width: 620px;
    }

    .sale-final {
        padding: 84px 0;
    }

    .sale-final-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sale-final-grid > div:last-child {
        max-width: 620px;
    }
}

@media (max-width: 560px) {

    .sale-hero::after {
        display: none;
    }

    .sale-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .sale-hero h1 {
        font-size: clamp(3rem, 13vw, 4.15rem);
        line-height: 0.94;
    }

    .sale-hero-intro {
        margin-top: 26px;
        font-size: 1rem;
        line-height: 1.62;
    }

    .sale-hero-note {
        margin-top: 28px;
        padding: 18px 18px;
    }

    .sale-hero-side {
        padding: 24px;
        border-radius: 18px;
    }

    .sale-hero-side p {
        font-size: 1.7rem;
    }

    .sale-floor {
        padding-top: 68px;
        padding-bottom: 72px;
    }

    .sale-floor-heading {
        margin-bottom: 36px;
    }

    .sale-floor-heading h2 {
        font-size: clamp(2.65rem, 12vw, 3.65rem);
    }

    .sale-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sale-card {
        border-radius: 18px;
    }

    .sale-card-media {
        aspect-ratio: 1.22 / 1;
    }

    .sale-card-body {
        padding: 22px;
    }

    .sale-final {
        padding: 72px 0;
    }

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

/* TAKE A SEAT PREMIUM SALE PAGE END */

/* TAKE A SEAT SALE HERO BACKGROUND START */

/*
    Camden becomes the hero photography.
    Copy stays readable on the left.
    Furniture stays visible on the right.
*/

.sale-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(5, 22, 58, 0.56) 0%,
            rgba(8, 34, 86, 0.54) 28%,
            rgba(9, 42, 107, 0.44) 47%,
            rgba(9, 39, 94, 0.20) 67%,
            rgba(4, 18, 43, 0.06) 100%
        ),
        url("../images/products/camden-sectional.webp")
        center right / cover no-repeat;
    color: #ffffff;
}

.sale-hero::before,
.sale-hero::after {
    display: none;
}

.sale-hero-grid {
    position: relative;
    z-index: 2;
    display: block;
    min-height: 660px;
    padding-top: 94px;
    padding-bottom: 96px;
}

.sale-hero-copy {
    width: min(100%, 760px);
    max-width: 760px;
}

.sale-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.sale-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(4.15rem, 5.65vw, 6.35rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.sale-hero h1 span {
    display: block;
    margin-top: 0.12em;
    color: #ffc838;
}

.sale-hero-intro {
    max-width: 650px;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.90);
}

.sale-hero-note {
    max-width: 590px;
    margin-top: 30px;
    padding: 18px 21px;
    border-left: 4px solid #ffc838;
    background: rgba(4, 17, 45, 0.48);
    backdrop-filter: blur(5px);
}

.sale-hero-note strong {
    color: #ffffff;
}

.sale-hero-note span {
    color: rgba(255, 255, 255, 0.82);
}


/*
    Compact deal marker directly over the hero photography.
*/

.sale-hero-deal-tag {
    position: absolute;
    z-index: 4;
    top: 64px;
    right: clamp(24px, 4vw, 68px);
    display: grid;
    gap: 2px;
    min-width: 190px;
    padding: 15px 20px 16px;
    border: 2px solid rgba(7, 27, 63, 0.12);
    border-radius: 14px;
    background: #ffc838;
    box-shadow: 0 16px 34px rgba(1, 12, 36, 0.20);
    color: #071b3f;
}

.sale-hero-deal-tag span {
    font-size: 0.69rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.sale-hero-deal-tag strong {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.035em;
}


/*
    Tablet.
*/

@media (max-width: 1100px) {

    .sale-hero {
        background:
            linear-gradient(
                90deg,
                rgba(5, 22, 58, 0.95) 0%,
                rgba(8, 34, 86, 0.90) 35%,
                rgba(9, 42, 107, 0.65) 61%,
                rgba(4, 18, 43, 0.20) 100%
            ),
            url("../images/products/camden-sectional.webp")
            62% center / cover no-repeat;
    }

    .sale-hero-grid {
        min-height: 620px;
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .sale-hero-copy {
        max-width: 670px;
    }

    .sale-hero h1 {
        max-width: 670px;
        font-size: clamp(3.65rem, 6.3vw, 5.2rem);
    }

    .sale-hero-intro {
        max-width: 570px;
    }

    .sale-hero-note {
        max-width: 540px;
    }

    .sale-hero-deal-tag {
        top: 48px;
        right: 28px;
        min-width: 170px;
    }
}


/*
    Mobile.
    Photo stays present instead of disappearing.
    Overlay gets stronger so text remains readable.
*/

@media (max-width: 820px) {

    .sale-hero {
        background:
            linear-gradient(
                180deg,
                rgba(5, 22, 58, 0.70) 0%,
                rgba(5, 24, 63, 0.84) 38%,
                rgba(5, 24, 63, 0.96) 72%,
                rgba(5, 22, 58, 0.98) 100%
            ),
            url("../images/products/camden-sectional.webp")
            67% top / auto 58% no-repeat,
            #071b3f;
    }

    .sale-hero-grid {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-top: 300px;
        padding-bottom: 72px;
    }

    .sale-hero-copy {
        width: 100%;
        max-width: none;
    }

    .sale-hero-deal-tag {
        top: 30px;
        right: 22px;
        min-width: 0;
        padding: 12px 16px 13px;
        border-radius: 12px;
    }

    .sale-hero-deal-tag span {
        font-size: 0.62rem;
    }

    .sale-hero-deal-tag strong {
        font-size: 1.35rem;
    }
}


@media (max-width: 560px) {

    .sale-hero {
        background:
            linear-gradient(
                180deg,
                rgba(5, 22, 58, 0.42) 0%,
                rgba(5, 23, 61, 0.70) 30%,
                rgba(5, 24, 63, 0.94) 53%,
                rgba(5, 22, 58, 0.99) 100%
            ),
            url("../images/products/camden-sectional.webp")
            66% top / auto 48% no-repeat,
            #071b3f;
    }

    .sale-hero-grid {
        padding-top: 260px;
        padding-bottom: 64px;
    }

    .sale-hero h1 {
        font-size: clamp(3rem, 13vw, 4.15rem);
        line-height: 0.94;
    }

    .sale-hero-intro {
        margin-top: 24px;
    }

    .sale-hero-note {
        margin-top: 26px;
    }

    .sale-hero-deal-tag {
        top: 22px;
        right: 18px;
    }
}

/* SALE HERO CONTENT RAIL START */

/*
    Full-bleed photography.
    Bounded content.
*/

.sale-hero-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

@media (max-width: 1100px) {

    .sale-hero-grid {
        width: min(calc(100% - 56px), 1400px);
    }
}

@media (max-width: 820px) {

    .sale-hero-grid {
        width: min(calc(100% - 40px), 1400px);
    }
}

@media (max-width: 560px) {

    .sale-hero-grid {
        width: min(calc(100% - 32px), 1400px);
    }
}

/* SALE HERO CONTENT RAIL END */

/* TAKE A SEAT SALE HERO BACKGROUND END */

/* TAKE A SEAT SALE STRIP RAIL START */

/*
    Full-width yellow background.
    Bounded information rail.
*/

.sale-strip-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.sale-strip-grid > div:first-child {
    padding-left: 0;
}

.sale-strip-grid > div:last-child {
    padding-right: 0;
}

@media (max-width: 1100px) {

    .sale-strip-grid {
        width: min(calc(100% - 56px), 1400px);
    }
}

@media (max-width: 820px) {

    .sale-strip-grid {
        width: min(calc(100% - 40px), 1400px);
    }
}

@media (max-width: 560px) {

    .sale-strip-grid {
        width: min(calc(100% - 32px), 1400px);
    }
}

/* TAKE A SEAT SALE STRIP RAIL END */

/* TAKE A SEAT SALE FLOOR REFINE START */

/*
    Full-width section background.
    Bounded sale floor content.
*/

.sale-floor > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}


/*
    Heading gets the full content rail instead of inheriting
    a narrow generic section-heading width.
*/

.sale-floor-heading {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: clamp(48px, 6vw, 90px);
    align-items: end;
    margin-bottom: 54px;
}

.sale-floor-heading > div {
    min-width: 0;
}

.sale-floor-heading h2 {
    width: 100%;
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.2rem, 4.25vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
}

.sale-floor-heading > p {
    width: 100%;
    max-width: 420px;
    margin: 0;
    justify-self: end;
    font-size: 1rem;
    line-height: 1.68;
}


/*
    Product grid polish.
*/

.sale-grid {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.sale-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow:
        0 10px 28px rgba(8, 26, 67, 0.055);
}

.sale-card-media {
    flex: 0 0 auto;
    aspect-ratio: 1.46 / 1;
}

.sale-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sale-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 25px 25px 28px;
}

.sale-card-category {
    margin-bottom: 8px;
}

.sale-card h3 {
    margin: 0;
    font-size: clamp(1.45rem, 1.55vw, 1.7rem);
    line-height: 1.08;
}

.sale-price {
    margin-top: 15px;
}

.sale-card-body > p:last-child {
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.58;
}


/*
    Tablet.
*/

@media (max-width: 1100px) {

    .sale-floor > .container {
        width: min(calc(100% - 56px), 1400px);
    }

    .sale-floor-heading {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 360px);
        gap: 42px;
    }

    .sale-floor-heading h2 {
        font-size: clamp(3rem, 5vw, 4.2rem);
    }

    .sale-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }
}


/*
    Mobile.
*/

@media (max-width: 820px) {

    .sale-floor > .container {
        width: min(calc(100% - 40px), 1400px);
    }

    .sale-floor-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .sale-floor-heading h2 {
        max-width: 720px;
    }

    .sale-floor-heading > p {
        max-width: 620px;
        justify-self: start;
    }
}

@media (max-width: 560px) {

    .sale-floor > .container {
        width: min(calc(100% - 32px), 1400px);
    }

    .sale-floor-heading {
        margin-bottom: 34px;
    }

    .sale-floor-heading h2 {
        font-size: clamp(2.65rem, 11.5vw, 3.55rem);
        line-height: 0.98;
    }

    .sale-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sale-card-media {
        aspect-ratio: 1.34 / 1;
    }

    .sale-card-body {
        padding: 22px 22px 25px;
    }
}

/* TAKE A SEAT SALE FLOOR REFINE END */

/* TAKE A SEAT SALE FLOOR TITLE START */

.sale-floor-title {
    display: block;
    width: 100%;
    max-width: 900px;
    margin: 0;
    line-height: 0.98;
    letter-spacing: -0.035em;
}

.sale-floor-title-line {
    display: block;
}

.sale-floor-title-line-primary {
    color: #071b3f;
}

.sale-floor-title-line-accent {
    margin-top: 0.10em;
    color: #0b43c5;
}

@media (max-width: 820px) {

    .sale-floor-title {
        line-height: 1;
        letter-spacing: -0.03em;
    }

    .sale-floor-title-line-accent {
        margin-top: 0.12em;
    }
}

/* TAKE A SEAT SALE FLOOR TITLE END */

/* TAKE A SEAT SALE FINAL RAIL START */

/*
    Full-width navy background.
    Bounded final Sale callout content.
*/

.sale-final-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1100px) {

    .sale-final-grid {
        width: min(calc(100% - 56px), 1400px);
    }
}

@media (max-width: 820px) {

    .sale-final-grid {
        width: min(calc(100% - 40px), 1400px);
    }
}

@media (max-width: 560px) {

    .sale-final-grid {
        width: min(calc(100% - 32px), 1400px);
    }
}

/* TAKE A SEAT SALE FINAL RAIL END */

/* TAKE A SEAT SALE FINAL DESIGN START */

.sale-final {
    position: relative;
    overflow: hidden;
    border-top: 5px solid #ffc838;
    background:
        linear-gradient(
            115deg,
            #0a1d42 0%,
            #0b2148 58%,
            #07162f 100%
        );
}

.sale-final::after {
    opacity: 0.42;
}

.sale-final-grid {
    align-items: center;
    gap: clamp(64px, 7vw, 104px);
}

.sale-final-grid > div:first-child {
    min-width: 0;
    padding-right: 12px;
}

.sale-final .eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #ffc838;
}

.sale-final .eyebrow::before {
    content: "";
    flex: 0 0 auto;
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: #ffc838;
}

.sale-final h2 {
    max-width: 820px;
    line-height: 0.98;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.sale-final-grid > div:last-child {
    display: grid;
    gap: 24px;
    justify-items: start;
    width: 100%;
    max-width: 470px;
    padding: 30px 32px 32px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 4px solid #ffc838;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 18px 38px rgba(1, 11, 31, 0.14);
}

.sale-final-grid > div:last-child p {
    margin: 0;
    max-width: 390px;
    font-size: 1.02rem;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.86);
}

.sale-final .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.sale-final .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #071b3f;
}

.sale-final .btn:focus-visible {
    outline: 3px solid #ffffff;
    outline-offset: 4px;
}

@media (max-width: 820px) {

    .sale-final-grid {
        gap: 36px;
        align-items: start;
    }

    .sale-final-grid > div:first-child {
        padding-right: 0;
    }

    .sale-final-grid > div:last-child {
        max-width: 620px;
        padding: 28px;
    }
}

@media (max-width: 560px) {

    .sale-final .eyebrow::before {
        width: 26px;
    }

    .sale-final-grid > div:last-child {
        padding: 24px;
        border-radius: 16px;
    }

    .sale-final .btn {
        width: 100%;
    }
}

/* TAKE A SEAT SALE FINAL DESIGN END */

/* TAKE A SEAT GLOBAL FOOTER LOGO CENTER START */

/*
    Shared footer standard.
    Applies to every page using the TAKE A SEAT footer.
*/

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.footer-logo-image {
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
    object-position: center center;
}

/* TAKE A SEAT GLOBAL FOOTER LOGO CENTER END */

/* TAKE A SEAT PREMIUM SERVICES PAGE START */

.services-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* Services hero */

.services-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            112deg,
            rgba(7, 27, 63, 0.65) 0%,
            rgba(13, 47, 125, 0.54) 34%,
            rgba(11, 42, 111, 0.33) 56%,
            rgba(7, 27, 63, 0.21) 74%,
            rgba(7, 27, 63, 0.18) 100%
        ),
        radial-gradient(
            circle at 84% 12%,
            rgba(255, 200, 56, 0.16) 0,
            rgba(255, 200, 56, 0) 24%
        ),
        url("../images/services/services-hero-design-planning.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #ffffff;
    isolation: isolate;
}
.services-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -180px;
    bottom: -250px;
    border: 64px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.services-hero-grid {
    position: relative;
    z-index: 2;
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.55fr);
    gap: clamp(56px, 7vw, 112px);
    align-items: center;
    min-height: 620px;
    padding-top: 96px;
    padding-bottom: 100px;
}

.services-hero-copy {
    max-width: 830px;
}

.services-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.services-hero h1 {
    max-width: 840px;
    margin: 0;
    font-size: clamp(4rem, 5.8vw, 6.45rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.services-hero h1 span {
    display: block;
    margin-top: 0.21em;
    color: #ffc838;
}

.services-hero-intro {
    max-width: 690px;
    margin: 32px 0 0;
    font-size: clamp(1.05rem, 1.25vw, 1.25rem);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.88);
}

.services-hero-copy > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 27px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.services-hero-copy > .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
    color: #071b3f;
}

.services-hero-note {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 34px 34px 35px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid #ffc838;
    border-radius: 18px;
    background: rgba(4, 20, 54, 0.44);
    backdrop-filter: blur(7px);
    box-shadow: 0 20px 45px rgba(1, 11, 32, 0.16);
}

.services-hero-note strong {
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.services-hero-note span {
    font-size: 0.98rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}


/* Services overview */

.services-overview {
    padding-top: 108px;
    padding-bottom: 116px;
    background: #f5f7fb;
}

.services-overview > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-overview-heading {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
    gap: clamp(52px, 6vw, 88px);
    align-items: end;
    margin-bottom: 54px;
}

.services-overview-heading .eyebrow {
    margin-bottom: 14px;
    color: #0b43c5;
}

.services-overview-heading h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.1rem, 4.5vw, 5rem);
    line-height: 0.97;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.services-overview-heading > p {
    width: 100%;
    max-width: 410px;
    margin: 0;
    justify-self: end;
    font-size: 1rem;
    line-height: 1.7;
    color: #536074;
}


/* Service blocks */

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    position: relative;
    min-height: 345px;
    padding: 36px 38px 38px;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.055);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        border-color 180ms ease;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(11, 67, 197, 0.24);
    box-shadow: 0 20px 42px rgba(8, 26, 67, 0.10);
}

.service-card-number {
    position: absolute;
    right: 24px;
    top: 18px;
    font-size: clamp(5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(11, 67, 197, 0.055);
    pointer-events: none;
}

.service-card-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 16px;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0.11em;
    color: #0b43c5;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    font-size: clamp(2rem, 2.5vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.service-card > p:not(.service-card-kicker) {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 22px 0 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #5a6679;
}

.service-card > a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    margin-top: 26px;
    color: #0b43c5;
    font-weight: 900;
    text-decoration: none;
}

.service-card > a::after {
    content: "->";
    margin-left: 8px;
    transition: transform 160ms ease;
}

.service-card > a:hover::after {
    transform: translateX(4px);
}


/* Showroom feature */

.services-showroom {
    padding: 108px 0;
    background: #0a1d42;
    color: #ffffff;
}

.services-showroom-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.82fr);
    overflow: hidden;
    border-radius: 26px;
    background: #0e2859;
    box-shadow: 0 24px 60px rgba(1, 10, 31, 0.20);
}

.services-showroom-media {
    min-height: 610px;
    overflow: hidden;
}

.services-showroom-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.services-showroom-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 52px;
    border-left: 5px solid #ffc838;
}

.services-showroom-copy .eyebrow {
    margin-bottom: 15px;
    color: #ffc838;
}

.services-showroom-copy h2 {
    margin: 0;
    font-size: clamp(2.75rem, 3.45vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.services-showroom-copy > p {
    margin: 26px 0 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.services-showroom-copy .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 26px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.services-showroom-copy .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}


/* Closing process section */

.services-process {
    padding-top: 104px;
    padding-bottom: 106px;
    background: #ffc838;
}

.services-process-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.55fr);
    gap: clamp(58px, 7vw, 104px);
    align-items: center;
}

.services-process .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.services-process h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.1rem, 4.7vw, 5.2rem);
    line-height: 0.97;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.services-process-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.services-process-copy p {
    max-width: 470px;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #071b3f;
}

.services-process .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.services-process .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.services-page a:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.services-process a:focus-visible {
    outline-color: #071b3f;
}


/* Tablet */

@media (max-width: 1100px) {

    .services-hero-grid,
    .services-overview > .container,
    .services-showroom-grid,
    .services-process-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .services-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
        gap: 46px;
    }

    .services-hero h1 {
        font-size: clamp(3.7rem, 6.2vw, 5.25rem);
    }

    .services-overview-heading {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 42px;
    }

    .service-card {
        padding: 32px;
    }

    .services-showroom-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.72fr);
    }

    .services-showroom-media {
        min-height: 540px;
    }

    .services-showroom-copy {
        padding: 46px 40px;
    }

    .services-process-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .services-hero-grid,
    .services-overview > .container,
    .services-showroom-grid,
    .services-process-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 82px;
    }

    .services-hero-note {
        max-width: 620px;
    }

    .services-overview {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .services-overview-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        align-items: start;
    }

    .services-overview-heading > p {
        max-width: 620px;
        justify-self: start;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 0;
    }

    .services-showroom {
        padding: 84px 0;
    }

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

    .services-showroom-media {
        min-height: 420px;
    }

    .services-showroom-copy {
        padding: 42px 38px 46px;
        border-left: 0;
        border-top: 5px solid #ffc838;
    }

    .services-process {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .services-process-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .services-hero-grid,
    .services-overview > .container,
    .services-showroom-grid,
    .services-process-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .services-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .services-hero h1 {
        font-size: clamp(3rem, 13vw, 4.15rem);
        line-height: 0.94;
    }

    .services-hero-intro {
        margin-top: 25px;
        font-size: 1rem;
    }

    .services-hero-note {
        padding: 26px 24px;
        border-radius: 16px;
    }

    .services-overview-heading {
        margin-bottom: 36px;
    }

    .services-overview-heading h2 {
        font-size: clamp(2.65rem, 11.5vw, 3.6rem);
    }

    .service-card {
        padding: 28px 25px 30px;
        border-radius: 18px;
    }

    .service-card-number {
        right: 18px;
        top: 16px;
    }

    .service-card h3 {
        font-size: clamp(1.9rem, 9vw, 2.4rem);
    }

    .services-showroom-grid {
        border-radius: 20px;
    }

    .services-showroom-media {
        min-height: 320px;
    }

    .services-showroom-copy {
        padding: 32px 26px 36px;
    }

    .services-showroom-copy h2 {
        font-size: clamp(2.6rem, 11.5vw, 3.55rem);
    }

    .services-process h2 {
        font-size: clamp(2.65rem, 11.5vw, 3.6rem);
    }

    .services-process .btn {
        width: 100%;
    }
}

/* TAKE A SEAT PREMIUM SERVICES PAGE END */

/* TAKE A SEAT SERVICES CLOSING DESKTOP FIT START */

@media (min-width: 1101px) {

    .services-process-grid {
        grid-template-columns: minmax(0, 1.42fr) minmax(300px, 0.42fr);
        gap: clamp(36px, 4vw, 64px);
    }

    .services-process h2 {
        font-size: clamp(2.9rem, 4.15vw, 4.7rem);
    }
}

/* TAKE A SEAT SERVICES CLOSING DESKTOP FIT END */

/* TAKE A SEAT HOME HERO PAYOFF STROKE START */

.home-hero-payoff {
    -webkit-text-stroke: 1px rgba(7, 27, 63, 0.60);
    paint-order: stroke fill;
}

/* TAKE A SEAT HOME HERO PAYOFF STROKE END */

/* TAKE A SEAT PREMIUM ABOUT PAGE START */

.about-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* About hero */

.about-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            100deg,
            rgba(7, 27, 63, 0.65) 0%,
            rgba(11, 52, 139, 0.54) 28%,
            rgba(11, 67, 197, 0.33) 47%,
            rgba(7, 27, 63, 0.21) 67%,
            rgba(7, 27, 63, 0.18) 100%
        ),
        url("../images/about/about-hero-before-opening.webp")
        center right / cover no-repeat;
    color: #ffffff;
    isolation: isolate;
}

.about-hero::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    right: -170px;
    top: -250px;
    border: 72px solid rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.5fr);
    gap: clamp(54px, 7vw, 110px);
    align-items: center;
    min-height: 620px;
    padding-top: 96px;
    padding-bottom: 100px;
}

.about-hero-copy {
    max-width: 900px;
}

.about-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.about-hero h1 {
    max-width: 880px;
    margin: 0;
    font-size: clamp(4rem, 5.7vw, 6.2rem);
    line-height: 0.92;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.about-hero h1 span {
    display: block;
    margin-top: 0.12em;
    color: #ffc838;
}

.about-hero-intro {
    max-width: 720px;
    margin: 30px 0 0;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.about-hero-copy > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 27px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.about-hero-copy > .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.about-hero-note {
    display: grid;
    gap: 10px;
    padding: 32px 32px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid #ffc838;
    border-radius: 18px;
    background: rgba(7, 27, 63, 0.52);
    box-shadow: 0 20px 45px rgba(1, 11, 31, 0.16);
}

.about-hero-note strong {
    font-size: clamp(1.45rem, 1.85vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.about-hero-note span {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}


/* Story */

.about-story {
    padding-top: 108px;
    padding-bottom: 110px;
    background: #ffffff;
}

.about-story-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(380px, 0.62fr);
    gap: clamp(48px, 5vw, 78px);
    align-items: start;
}

.about-story-heading .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.about-story-heading h2 {
    max-width: 860px;
    margin: 0;
    font-size: clamp(3rem, 3.8vw, 4.35rem);
    line-height: 0.97;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.about-story-copy {
    display: grid;
    gap: 22px;
    padding-top: 10px;
}

.about-story-copy p {
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.78;
    color: #526074;
}

.about-story-copy p:last-child {
    font-weight: 900;
    color: #0b43c5;
}


/* Principles */

.about-principles {
    padding-top: 106px;
    padding-bottom: 116px;
    background: #f5f7fb;
}

.about-principles > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.about-principles-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
    gap: clamp(50px, 6vw, 86px);
    align-items: end;
    margin-bottom: 52px;
}

.about-principles-heading .eyebrow {
    margin-bottom: 14px;
    color: #0b43c5;
}

.about-principles-heading h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.1rem, 4.4vw, 4.9rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.about-principles-heading > p {
    margin: 0;
    max-width: 410px;
    justify-self: end;
    line-height: 1.7;
    color: #566276;
}

.about-principles-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-principle {
    position: relative;
    min-height: 320px;
    padding: 36px 38px 38px;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.05);
}

.about-principle-number {
    position: absolute;
    right: 22px;
    top: 16px;
    font-size: clamp(5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(11, 67, 197, 0.055);
}

.about-principle h3 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    font-size: clamp(2rem, 2.45vw, 2.65rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.about-principle p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 22px 0 0;
    font-size: 0.99rem;
    line-height: 1.66;
    color: #586579;
}


/* Reality feature */

.about-reality {
    padding: 108px 0;
    background: #0a1d42;
    color: #ffffff;
}

.about-reality-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(410px, 0.7fr);
    overflow: hidden;
    border-radius: 26px;
    background: #0e2859;
    box-shadow: 0 24px 60px rgba(1, 10, 31, 0.20);
}

.about-reality-media {
    min-height: 610px;
    overflow: hidden;
    background: #071b3f;
}

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

.about-reality-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 50px;
    border-left: 5px solid #ffc838;
}

.about-reality-copy .eyebrow {
    margin-bottom: 15px;
    color: #ffc838;
}

.about-reality-copy h2 {
    margin: 0;
    font-size: clamp(2.8rem, 3.7vw, 4.2rem);
    line-height: 0.99;
    letter-spacing: -0.048em;
    color: #ffffff;
}

.about-reality-copy > p {
    margin: 25px 0 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
}

.about-reality-copy .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 26px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.about-reality-copy .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}


/* Closing */

.about-closing {
    padding-top: 104px;
    padding-bottom: 106px;
    background: #ffc838;
}

.about-closing-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.about-closing .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.about-closing h2 {
    margin: 0;
    max-width: 900px;
    font-size: clamp(3.2rem, 4.7vw, 5.2rem);
    line-height: 0.97;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.about-closing h2 span {
    display: block;
    margin-top: 0.08em;
    color: #0b43c5;
}

.about-closing-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.about-closing-copy p {
    margin: 0;
    max-width: 470px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #071b3f;
}

.about-closing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.about-closing .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.about-page a:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.about-closing a:focus-visible {
    outline-color: #071b3f;
}


/* Tablet */

@media (max-width: 1100px) {

    .about-hero-grid,
    .about-story-grid,
    .about-principles > .container,
    .about-reality-grid,
    .about-closing-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .about-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
        gap: 44px;
    }

    .about-story-grid {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
        gap: 48px;
    }

    .about-principles-heading {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 42px;
    }

    .about-reality-grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    }

    .about-reality-copy {
        padding: 46px 40px;
    }

    .about-closing-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .about-hero-grid,
    .about-story-grid,
    .about-principles > .container,
    .about-reality-grid,
    .about-closing-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 82px;
    }

    .about-hero-note {
        max-width: 620px;
    }

    .about-story {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .about-story-copy {
        max-width: 680px;
    }

    .about-principles {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .about-principles-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-principles-heading > p {
        max-width: 620px;
        justify-self: start;
    }

    .about-principles-grid {
        grid-template-columns: 1fr;
    }

    .about-principle {
        min-height: 0;
    }

    .about-reality {
        padding: 84px 0;
    }

    .about-reality-grid {
        grid-template-columns: 1fr;
    }

    .about-reality-media {
        min-height: 430px;
    }

    .about-reality-copy {
        padding: 42px 38px 46px;
        border-left: 0;
        border-top: 5px solid #ffc838;
    }

    .about-closing {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .about-closing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-closing-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .about-hero-grid,
    .about-story-grid,
    .about-principles > .container,
    .about-reality-grid,
    .about-closing-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .about-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .about-hero h1 {
        font-size: clamp(3rem, 13vw, 4.15rem);
        line-height: 0.94;
    }

    .about-hero-intro {
        margin-top: 24px;
        font-size: 1rem;
    }

    .about-hero-note {
        padding: 26px 24px;
        border-radius: 16px;
    }

    .about-story-heading h2,
    .about-principles-heading h2,
    .about-closing h2 {
        font-size: clamp(2.65rem, 11.5vw, 3.6rem);
    }

    .about-principle {
        padding: 28px 25px 30px;
        border-radius: 18px;
    }

    .about-principle h3 {
        font-size: clamp(1.9rem, 9vw, 2.4rem);
    }

    .about-reality-grid {
        border-radius: 20px;
    }

    .about-reality-media {
        min-height: 320px;
    }

    .about-reality-copy {
        padding: 32px 26px 36px;
    }

    .about-reality-copy h2 {
        font-size: clamp(2.55rem, 11vw, 3.5rem);
    }

    .about-closing .btn {
        width: 100%;
    }
}

/* TAKE A SEAT ABOUT PRINCIPLES DESKTOP FIT START */

@media (min-width: 821px) {

    .about-principles-heading {
        width: 100%;
        max-width: none;
        grid-template-columns:
            minmax(0, 1.28fr)
            minmax(320px, 0.52fr);
        gap: clamp(48px, 5vw, 76px);
        align-items: center;
    }

    .about-principles-heading > div {
        width: 100%;
        min-width: 0;
        max-width: none;
    }

    .about-principles-heading h2 {
        width: 100%;
        max-width: 940px;
        font-size: clamp(3rem, 3.65vw, 4.25rem);
        line-height: 0.98;
    }

    .about-principles-heading > p {
        width: 100%;
        max-width: 390px;
        justify-self: end;
        align-self: center;
    }
}

/* TAKE A SEAT ABOUT PRINCIPLES DESKTOP FIT END */

/* TAKE A SEAT PREMIUM ABOUT PAGE END */

/* TAKE A SEAT PREMIUM SHOWROOM PAGE START */

.showroom-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* Hero */

.showroom-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            100deg,
            rgba(7, 27, 63, 0.65) 0%,
            rgba(7, 27, 63, 0.54) 28%,
            rgba(11, 52, 139, 0.33) 48%,
            rgba(7, 27, 63, 0.21) 68%,
            rgba(7, 27, 63, 0.18) 100%
        ),
        url("../images/showroom/showroom-hero-flagship.webp")
        center center / cover no-repeat;
    color: #ffffff;
    isolation: isolate;
}

.showroom-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -170px;
    bottom: -250px;
    border: 76px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.showroom-hero-grid {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.46fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: center;
    min-height: 620px;
    padding-top: 94px;
    padding-bottom: 98px;
}

.showroom-hero-copy {
    max-width: 920px;
}

.showroom-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.showroom-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3.8rem, 5.5vw, 6rem);
    line-height: 0.93;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.showroom-hero h1 span {
    display: block;
    margin-top: 0.14em;
    color: #ffc838;
}

.showroom-hero-intro {
    max-width: 720px;
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

.showroom-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    align-items: center;
    margin-top: 30px;
}

.showroom-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 28px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.showroom-hero-actions .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.showroom-text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.showroom-text-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
    height: 2px;
    background: #ffc838;
    transform: scaleX(0.38);
    transform-origin: left center;
    transition: transform 180ms ease;
}

.showroom-text-link:hover::after {
    transform: scaleX(1);
}

.showroom-hero-note {
    display: grid;
    gap: 10px;
    padding: 32px 32px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid #ffc838;
    border-radius: 18px;
    background: rgba(7, 27, 63, 0.52);
    box-shadow: 0 20px 45px rgba(1, 11, 31, 0.16);
}

.showroom-hero-note strong {
    font-size: clamp(1.4rem, 1.8vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
    color: #ffffff;
}

.showroom-hero-note span {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}


/* Reasons */

.showroom-reasons {
    padding-top: 106px;
    padding-bottom: 116px;
    background: #f5f7fb;
}

.showroom-reasons > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.showroom-reasons-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(48px, 6vw, 86px);
    align-items: end;
    margin-bottom: 52px;
}

.showroom-reasons-heading .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.showroom-reasons-heading h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 4vw, 4.55rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.showroom-reasons-heading > p {
    max-width: 430px;
    margin: 0;
    justify-self: end;
    font-size: 1rem;
    line-height: 1.72;
    color: #566276;
}

.showroom-reasons-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.showroom-reason {
    position: relative;
    min-height: 290px;
    padding: 36px 38px 38px;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.05);
}

.showroom-reason-number {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: clamp(5rem, 8vw, 8rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(11, 67, 197, 0.055);
}

.showroom-reason h3 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    font-size: clamp(2rem, 2.4vw, 2.6rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.showroom-reason p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 22px 0 0;
    font-size: 0.99rem;
    line-height: 1.67;
    color: #586579;
}


/* Visit */

.showroom-visit {
    padding: 108px 0;
    background: #071b3f;
    color: #ffffff;
}

.showroom-visit-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: start;
}

.showroom-visit-copy {
    position: sticky;
    top: 36px;
}

.showroom-visit-copy .eyebrow {
    margin-bottom: 15px;
    color: #ffc838;
}

.showroom-visit-copy h2 {
    max-width: 680px;
    margin: 0;
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.showroom-visit-copy > p {
    max-width: 600px;
    margin: 26px 0 0;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.76);
}

.showroom-visit-details {
    display: grid;
    gap: 18px;
}

.showroom-detail {
    display: grid;
    grid-template-columns: minmax(130px, 0.28fr) minmax(0, 0.72fr);
    gap: 22px;
    align-items: start;
    padding: 28px 30px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 5px solid #ffc838;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.055);
}

.showroom-detail-label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    color: #ffc838;
}

.showroom-detail strong {
    display: block;
    margin: 0;
    font-size: clamp(1.45rem, 1.75vw, 1.8rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.showroom-detail p {
    grid-column: 2;
    margin: -10px 0 0;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}


/* Bring */

.showroom-bring {
    padding-top: 108px;
    padding-bottom: 112px;
    background: #ffffff;
}

.showroom-bring-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: start;
}

.showroom-bring-heading .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.showroom-bring-heading h2 {
    max-width: 660px;
    margin: 0;
    font-size: clamp(3rem, 4vw, 4.5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.showroom-bring-heading > p {
    max-width: 600px;
    margin: 25px 0 0;
    font-size: 1rem;
    line-height: 1.72;
    color: #586579;
}

.showroom-bring-list {
    display: grid;
    border-top: 1px solid #d9e0eb;
}

.showroom-bring-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0 30px;
    border-bottom: 1px solid #d9e0eb;
}

.showroom-bring-item > span {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #0b43c5;
}

.showroom-bring-item h3 {
    margin: 0;
    font-size: clamp(1.8rem, 2.2vw, 2.35rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #071b3f;
}

.showroom-bring-item p {
    max-width: 690px;
    margin: 12px 0 0;
    line-height: 1.68;
    color: #586579;
}


/* Closing help */

.showroom-help {
    padding-top: 102px;
    padding-bottom: 104px;
    background: #ffc838;
}

.showroom-help-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.showroom-help .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.showroom-help h2 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3rem, 4.4vw, 4.9rem);
    line-height: 0.97;
    letter-spacing: -0.05em;
    color: #071b3f;
}

.showroom-help h2 span {
    display: block;
    margin-top: 0.08em;
    color: #0b43c5;
}

.showroom-help-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.showroom-help-copy p {
    max-width: 470px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #071b3f;
}

.showroom-help .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.showroom-help .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.showroom-page a:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.showroom-help a:focus-visible {
    outline-color: #071b3f;
}


/* Tablet */

@media (max-width: 1100px) {

    .showroom-hero-grid,
    .showroom-reasons > .container,
    .showroom-visit-grid,
    .showroom-bring-grid,
    .showroom-help-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .showroom-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.44fr);
        gap: 44px;
    }

    .showroom-reasons-heading {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
        gap: 42px;
    }

    .showroom-visit-grid {
        grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
        gap: 52px;
    }

    .showroom-bring-grid {
        grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
        gap: 50px;
    }

    .showroom-help-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .showroom-hero-grid,
    .showroom-reasons > .container,
    .showroom-visit-grid,
    .showroom-bring-grid,
    .showroom-help-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .showroom-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 82px;
    }

    .showroom-hero-note {
        max-width: 620px;
    }

    .showroom-reasons {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .showroom-reasons-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .showroom-reasons-heading > p {
        max-width: 640px;
        justify-self: start;
    }

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

    .showroom-reason {
        min-height: 0;
    }

    .showroom-visit {
        padding: 84px 0;
    }

    .showroom-visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .showroom-visit-copy {
        position: static;
    }

    .showroom-bring {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .showroom-bring-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .showroom-help {
        padding-top: 82px;
        padding-bottom: 84px;
    }

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

    .showroom-help-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .showroom-hero-grid,
    .showroom-reasons > .container,
    .showroom-visit-grid,
    .showroom-bring-grid,
    .showroom-help-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .showroom-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .showroom-hero h1 {
        font-size: clamp(3rem, 13vw, 4.15rem);
        line-height: 0.94;
    }

    .showroom-hero-intro {
        margin-top: 24px;
        font-size: 1rem;
    }

    .showroom-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .showroom-hero-actions .btn {
        width: 100%;
    }

    .showroom-text-link {
        align-self: flex-start;
    }

    .showroom-hero-note {
        padding: 26px 24px;
        border-radius: 16px;
    }

    .showroom-reasons-heading h2,
    .showroom-visit-copy h2,
    .showroom-bring-heading h2,
    .showroom-help h2 {
        font-size: clamp(2.6rem, 11.5vw, 3.6rem);
    }

    .showroom-reason {
        padding: 28px 25px 30px;
        border-radius: 18px;
    }

    .showroom-reason h3 {
        font-size: clamp(1.9rem, 9vw, 2.4rem);
    }

    .showroom-detail {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px 22px;
    }

    .showroom-detail p {
        grid-column: 1;
        margin-top: 0;
    }

    .showroom-bring-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
    }

    .showroom-bring-item h3 {
        font-size: clamp(1.75rem, 8.6vw, 2.2rem);
    }

    .showroom-help .btn {
        width: 100%;
    }
}

/* TAKE A SEAT SHOWROOM WHITE HEADLINE TRACKING START */

.showroom-hero h1 {
    letter-spacing: -0.015em;
}

.showroom-hero h1 span {
    letter-spacing: -0.055em;
}

/* TAKE A SEAT SHOWROOM WHITE HEADLINE TRACKING END */

/* TAKE A SEAT SHOWROOM BRING DESKTOP FIT START */

@media (min-width: 821px) {

    .showroom-bring-grid {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(0, 1.08fr);
        gap: clamp(48px, 5vw, 78px);
    }

    .showroom-bring-heading h2 {
        max-width: 760px;
        font-size: clamp(2.9rem, 3.65vw, 4.15rem);
        line-height: 0.98;
    }

    .showroom-bring-heading > p {
        max-width: 620px;
    }
}

/* TAKE A SEAT SHOWROOM BRING DESKTOP FIT END */

/* TAKE A SEAT PREMIUM SHOWROOM PAGE END */

/* TAKE A SEAT PREMIUM FINANCING PAGE START */

.financing-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* Hero */

.financing-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            100deg,
            rgba(7, 27, 63, 0.65) 0%,
            rgba(7, 27, 63, 0.54) 28%,
            rgba(11, 52, 139, 0.33) 48%,
            rgba(7, 27, 63, 0.21) 68%,
            rgba(7, 27, 63, 0.18) 100%
        ),
        url("../images/financing/financing-hero-consultation.webp")
        center right / cover no-repeat;
    color: #ffffff;
    isolation: isolate;
}

.financing-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -160px;
    top: -250px;
    border: 78px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.financing-hero::after {
    content: "$";
    position: absolute;
    right: 7vw;
    bottom: -0.16em;
    font-size: clamp(14rem, 24vw, 26rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.08em;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.financing-hero-grid {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.46fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: center;
    min-height: 620px;
    padding-top: 94px;
    padding-bottom: 98px;
}

.financing-hero-copy {
    max-width: 940px;
}

.financing-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.financing-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3.75rem, 5.4vw, 5.9rem);
    line-height: 0.93;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.financing-hero h1 span {
    display: block;
    margin-top: 0.12em;
    color: #ffc838;
    letter-spacing: -0.03em;
}

.financing-hero-intro {
    max-width: 730px;
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

.financing-hero-copy > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 28px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.financing-hero-copy > .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.financing-hero-note {
    display: grid;
    gap: 10px;
    padding: 32px 32px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid #ffc838;
    border-radius: 18px;
    background: rgba(7, 27, 63, 0.52);
    box-shadow: 0 20px 45px rgba(1, 11, 31, 0.16);
}

.financing-hero-note strong {
    font-size: clamp(1.4rem, 1.8vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.financing-hero-note span {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}


/* How it works */

.financing-how {
    padding-top: 106px;
    padding-bottom: 116px;
    background: #f5f7fb;
}

.financing-how > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.financing-how-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(48px, 6vw, 86px);
    align-items: end;
    margin-bottom: 52px;
}

.financing-how-heading .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.financing-how-heading h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 4vw, 4.55rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.financing-how-heading > p {
    max-width: 440px;
    margin: 0;
    justify-self: end;
    font-size: 1rem;
    line-height: 1.72;
    color: #566276;
}

.financing-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.financing-step {
    position: relative;
    min-height: 330px;
    padding: 36px 36px 38px;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.05);
}

.financing-step-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: clamp(5rem, 7.2vw, 7.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(11, 67, 197, 0.055);
}

.financing-step h3 {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0;
    font-size: clamp(2rem, 2.35vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #071b3f;
}

.financing-step p {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 22px 0 0;
    font-size: 0.99rem;
    line-height: 1.67;
    color: #586579;
}


/* Questions */

.financing-questions {
    padding: 108px 0;
    background: #071b3f;
    color: #ffffff;
}

.financing-questions-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
    gap: clamp(58px, 7vw, 110px);
    align-items: start;
}

.financing-questions-copy {
    position: sticky;
    top: 36px;
}

.financing-questions-copy .eyebrow {
    margin-bottom: 15px;
    color: #ffc838;
}

.financing-questions-copy h2 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(2.95rem, 3.9vw, 4.35rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.financing-questions-copy > p {
    max-width: 590px;
    margin: 26px 0 0;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
}

.financing-question-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.financing-question {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    padding: 28px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.financing-question > span {
    padding-top: 5px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #ffc838;
}

.financing-question h3 {
    margin: 0;
    font-size: clamp(1.8rem, 2.15vw, 2.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.financing-question p {
    max-width: 720px;
    margin: 12px 0 0;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.74);
}


/* Provider */

.financing-provider {
    padding-top: 104px;
    padding-bottom: 108px;
    background: #ffffff;
}

.financing-provider-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.financing-provider .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.financing-provider h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 4.2vw, 4.65rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.financing-provider-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.financing-provider-copy p {
    max-width: 480px;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.72;
    color: #566276;
}

.financing-provider .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #0b43c5;
    border-radius: 999px;
    background: #0b43c5;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.financing-provider .btn:hover {
    border-color: #071b3f;
    background: #071b3f;
}


/* Closing */

.financing-closing {
    padding-top: 102px;
    padding-bottom: 104px;
    background: #ffc838;
}

.financing-closing-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.financing-closing .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.financing-closing h2 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3rem, 4.4vw, 4.9rem);
    line-height: 0.97;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.financing-closing h2 span {
    display: block;
    margin-top: 0.08em;
    color: #0b43c5;
}

.financing-closing-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.financing-closing-copy p {
    max-width: 470px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #071b3f;
}

.financing-closing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.financing-closing .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.financing-page a:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.financing-closing a:focus-visible {
    outline-color: #071b3f;
}


/* Tablet */

@media (max-width: 1100px) {

    .financing-hero-grid,
    .financing-how > .container,
    .financing-questions-grid,
    .financing-provider-grid,
    .financing-closing-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .financing-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.44fr);
        gap: 44px;
    }

    .financing-how-heading {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
        gap: 42px;
    }

    .financing-questions-grid {
        grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
        gap: 50px;
    }

    .financing-provider-grid,
    .financing-closing-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .financing-hero-grid,
    .financing-how > .container,
    .financing-questions-grid,
    .financing-provider-grid,
    .financing-closing-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .financing-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 82px;
    }

    .financing-hero-note {
        max-width: 620px;
    }

    .financing-how {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .financing-how-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .financing-how-heading > p {
        max-width: 640px;
        justify-self: start;
    }

    .financing-steps {
        grid-template-columns: 1fr;
    }

    .financing-step {
        min-height: 0;
    }

    .financing-questions {
        padding: 84px 0;
    }

    .financing-questions-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .financing-questions-copy {
        position: static;
    }

    .financing-provider,
    .financing-closing {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .financing-provider-grid,
    .financing-closing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .financing-provider-copy,
    .financing-closing-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .financing-hero-grid,
    .financing-how > .container,
    .financing-questions-grid,
    .financing-provider-grid,
    .financing-closing-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .financing-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .financing-hero h1 {
        font-size: clamp(2.9rem, 12.5vw, 4.05rem);
        line-height: 0.94;
    }

    .financing-hero-intro {
        margin-top: 24px;
        font-size: 1rem;
    }

    .financing-hero-copy > .btn {
        width: 100%;
    }

    .financing-hero-note {
        padding: 26px 24px;
        border-radius: 16px;
    }

    .financing-how-heading h2,
    .financing-questions-copy h2,
    .financing-provider h2,
    .financing-closing h2 {
        font-size: clamp(2.6rem, 11.5vw, 3.6rem);
    }

    .financing-step {
        padding: 28px 25px 30px;
        border-radius: 18px;
    }

    .financing-step h3 {
        font-size: clamp(1.9rem, 9vw, 2.4rem);
    }

    .financing-question {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
    }

    .financing-question h3 {
        font-size: clamp(1.75rem, 8.6vw, 2.2rem);
    }

    .financing-provider .btn,
    .financing-closing .btn {
        width: 100%;
    }
}

/* TAKE A SEAT FINANCING HERO DESKTOP FIT START */

@media (min-width: 821px) {

    .financing-hero h1 {
        max-width: 980px;
        font-size: clamp(3.6rem, 4.85vw, 5.35rem);
        line-height: 0.94;
        letter-spacing: -0.04em;
    }
}

/* TAKE A SEAT FINANCING HERO DESKTOP FIT END */

/* TAKE A SEAT FINANCING QUESTIONS DESKTOP FIT START */

@media (min-width: 821px) {

    .financing-questions-grid {
        grid-template-columns:
            minmax(0, 0.95fr)
            minmax(0, 1.05fr);
        gap: clamp(48px, 5vw, 78px);
    }

    .financing-questions-copy h2 {
        max-width: 760px;
        font-size: clamp(2.9rem, 3.45vw, 4rem);
        line-height: 0.98;
    }

    .financing-questions-copy > p {
        max-width: 620px;
    }
}

/* TAKE A SEAT FINANCING QUESTIONS DESKTOP FIT END */

/* TAKE A SEAT FINANCING QUESTIONS SCROLL POLISH START */

@media (min-width: 821px) {

    .financing-questions {
        padding-top: 82px;
        padding-bottom: 86px;
    }

    .financing-questions-copy {
        position: sticky;
        top: 130px;
    }

    .financing-question {
        padding-top: 22px;
        padding-bottom: 24px;
    }
}

/* TAKE A SEAT FINANCING QUESTIONS SCROLL POLISH END */

/* TAKE A SEAT PREMIUM FINANCING PAGE END */

/* TAKE A SEAT PREMIUM DELIVERY PAGE START */

.delivery-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* Hero */

.delivery-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            100deg,
            rgba(7, 27, 63, 0.65) 0%,
            rgba(7, 27, 63, 0.54) 28%,
            rgba(11, 52, 139, 0.33) 48%,
            rgba(7, 27, 63, 0.21) 68%,
            rgba(7, 27, 63, 0.18) 100%
        ),
        url("../images/delivery/delivery-hero-sectional.webp")
        center right / cover no-repeat;
    color: #ffffff;
    isolation: isolate;
}

.delivery-hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -170px;
    top: -240px;
    border: 76px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.delivery-hero-grid {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.46fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: center;
    min-height: 620px;
    padding-top: 94px;
    padding-bottom: 98px;
}

.delivery-hero-copy {
    max-width: 940px;
}

.delivery-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.delivery-hero h1 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3.7rem, 5.25vw, 5.8rem);
    line-height: 0.93;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.delivery-hero h1 span {
    display: block;
    margin-top: 0.13em;
    color: #ffc838;
    letter-spacing: -0.03em;
}

.delivery-hero-intro {
    max-width: 740px;
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

.delivery-hero-copy > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 28px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.delivery-hero-copy > .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.delivery-hero-note {
    display: grid;
    gap: 10px;
    padding: 32px 32px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid #ffc838;
    border-radius: 18px;
    background: rgba(7, 27, 63, 0.52);
    box-shadow: 0 20px 45px rgba(1, 11, 31, 0.16);
}

.delivery-hero-note strong {
    font-size: clamp(1.4rem, 1.8vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.delivery-hero-note span {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}


/* How delivery works */

.delivery-how {
    padding-top: 106px;
    padding-bottom: 116px;
    background: #f5f7fb;
}

.delivery-how > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-how-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(48px, 6vw, 86px);
    align-items: end;
    margin-bottom: 52px;
}

.delivery-how-heading .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.delivery-how-heading h2 {
    max-width: 930px;
    margin: 0;
    font-size: clamp(3rem, 4vw, 4.55rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.delivery-how-heading > p {
    max-width: 440px;
    margin: 0;
    justify-self: end;
    font-size: 1rem;
    line-height: 1.72;
    color: #566276;
}

.delivery-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.delivery-step {
    position: relative;
    min-height: 330px;
    padding: 36px 36px 38px;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.05);
}

.delivery-step-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: clamp(5rem, 7.2vw, 7.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(11, 67, 197, 0.055);
}

.delivery-step h3 {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0;
    font-size: clamp(2rem, 2.35vw, 2.55rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #071b3f;
}

.delivery-step p {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 22px 0 0;
    font-size: 0.99rem;
    line-height: 1.67;
    color: #586579;
}


/* Measure section */

.delivery-measure {
    padding: 108px 0;
    background: #071b3f;
    color: #ffffff;
}

.delivery-measure-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(58px, 7vw, 110px);
    align-items: start;
}

.delivery-measure-copy {
    position: sticky;
    top: 130px;
}

.delivery-measure-copy .eyebrow {
    margin-bottom: 15px;
    color: #ffc838;
}

.delivery-measure-copy h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(2.95rem, 3.9vw, 4.35rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.delivery-measure-copy > p {
    max-width: 590px;
    margin: 26px 0 0;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
}

.delivery-measure-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.delivery-measure-item {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 24px;
    padding: 24px 0 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.delivery-measure-item > span {
    padding-top: 5px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #ffc838;
}

.delivery-measure-item h3 {
    margin: 0;
    font-size: clamp(1.8rem, 2.15vw, 2.3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #ffffff;
}

.delivery-measure-item p {
    max-width: 720px;
    margin: 12px 0 0;
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.74);
}


/* Service details */

.delivery-service {
    padding-top: 104px;
    padding-bottom: 108px;
    background: #ffffff;
}

.delivery-service-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.delivery-service .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.delivery-service h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 4.2vw, 4.65rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.delivery-service-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.delivery-service-copy p {
    max-width: 500px;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.72;
    color: #566276;
}

.delivery-service .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #0b43c5;
    border-radius: 999px;
    background: #0b43c5;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.delivery-service .btn:hover {
    border-color: #071b3f;
    background: #071b3f;
}


/* Closing */

.delivery-closing {
    padding-top: 102px;
    padding-bottom: 104px;
    background: #ffc838;
}

.delivery-closing-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.delivery-closing .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.delivery-closing h2 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3rem, 4.4vw, 4.9rem);
    line-height: 0.97;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.delivery-closing h2 span {
    display: block;
    margin-top: 0.08em;
    color: #0b43c5;
}

.delivery-closing-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.delivery-closing-copy p {
    max-width: 470px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #071b3f;
}

.delivery-closing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.delivery-closing .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.delivery-page a:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.delivery-closing a:focus-visible {
    outline-color: #071b3f;
}


/* Tablet */

@media (max-width: 1100px) {

    .delivery-hero-grid,
    .delivery-how > .container,
    .delivery-measure-grid,
    .delivery-service-grid,
    .delivery-closing-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .delivery-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.44fr);
        gap: 44px;
    }

    .delivery-how-heading {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
        gap: 42px;
    }

    .delivery-measure-grid {
        grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
        gap: 50px;
    }

    .delivery-service-grid,
    .delivery-closing-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .delivery-hero-grid,
    .delivery-how > .container,
    .delivery-measure-grid,
    .delivery-service-grid,
    .delivery-closing-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .delivery-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 82px;
    }

    .delivery-hero-note {
        max-width: 620px;
    }

    .delivery-how {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .delivery-how-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .delivery-how-heading > p {
        max-width: 640px;
        justify-self: start;
    }

    .delivery-steps {
        grid-template-columns: 1fr;
    }

    .delivery-step {
        min-height: 0;
    }

    .delivery-measure {
        padding: 84px 0;
    }

    .delivery-measure-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .delivery-measure-copy {
        position: static;
    }

    .delivery-service,
    .delivery-closing {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .delivery-service-grid,
    .delivery-closing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .delivery-service-copy,
    .delivery-closing-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .delivery-hero-grid,
    .delivery-how > .container,
    .delivery-measure-grid,
    .delivery-service-grid,
    .delivery-closing-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .delivery-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .delivery-hero h1 {
        font-size: clamp(2.9rem, 12.5vw, 4.05rem);
        line-height: 0.94;
    }

    .delivery-hero-intro {
        margin-top: 24px;
        font-size: 1rem;
    }

    .delivery-hero-copy > .btn {
        width: 100%;
    }

    .delivery-hero-note {
        padding: 26px 24px;
        border-radius: 16px;
    }

    .delivery-how-heading h2,
    .delivery-measure-copy h2,
    .delivery-service h2,
    .delivery-closing h2 {
        font-size: clamp(2.6rem, 11.5vw, 3.6rem);
    }

    .delivery-step {
        padding: 28px 25px 30px;
        border-radius: 18px;
    }

    .delivery-step h3 {
        font-size: clamp(1.9rem, 9vw, 2.4rem);
    }

    .delivery-measure-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 16px;
    }

    .delivery-measure-item h3 {
        font-size: clamp(1.75rem, 8.6vw, 2.2rem);
    }

    .delivery-service .btn,
    .delivery-closing .btn {
        width: 100%;
    }
}

/* TAKE A SEAT DELIVERY MEASURE DESKTOP FIT START */

@media (min-width: 821px) {

    .delivery-measure-grid {
        grid-template-columns:
            minmax(0, 0.96fr)
            minmax(0, 1.04fr);
        gap: clamp(48px, 5vw, 78px);
    }

    .delivery-measure-copy h2 {
        max-width: 780px;
        font-size: clamp(2.9rem, 3.45vw, 4rem);
        line-height: 0.98;
    }

    .delivery-measure-copy > p {
        max-width: 620px;
    }
}

/* TAKE A SEAT DELIVERY MEASURE DESKTOP FIT END */

/* TAKE A SEAT DELIVERY FINAL HEADLINE FIT START */

@media (min-width: 821px) {

    .delivery-service-grid {
        grid-template-columns:
            minmax(0, 1.32fr)
            minmax(320px, 0.48fr);
        gap: clamp(48px, 5vw, 78px);
    }

    .delivery-service h2 {
        max-width: 1020px;
        font-size: clamp(2.9rem, 3.75vw, 4.25rem);
    }

    .delivery-closing-grid {
        grid-template-columns:
            minmax(0, 1.34fr)
            minmax(320px, 0.46fr);
        gap: clamp(48px, 5vw, 78px);
    }

    .delivery-closing h2 {
        max-width: 1080px;
        font-size: clamp(2.9rem, 3.75vw, 4.3rem);
    }

    .delivery-closing h2 span {
        max-width: 1080px;
    }
}

/* TAKE A SEAT DELIVERY FINAL HEADLINE FIT END */

/* TAKE A SEAT PREMIUM DELIVERY PAGE END */

/* TAKE A SEAT PREMIUM FAQ PAGE START */

.faq-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* Hero */

.faq-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            100deg,
            rgba(7, 27, 63, 0.65) 0%,
            rgba(7, 27, 63, 0.54) 28%,
            rgba(11, 52, 139, 0.33) 48%,
            rgba(7, 27, 63, 0.21) 68%,
            rgba(7, 27, 63, 0.18) 100%
        ),
        url("../images/faq/faq-hero-questions.webp")
        center right / cover no-repeat;
    color: #ffffff;
    isolation: isolate;
}

.faq-hero::before {
    content: "?";
    position: absolute;
    right: 5vw;
    bottom: -0.22em;
    font-size: clamp(16rem, 27vw, 29rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
    pointer-events: none;
}

.faq-hero-grid {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.46fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: center;
    min-height: 600px;
    padding-top: 92px;
    padding-bottom: 96px;
}

.faq-hero-copy {
    max-width: 940px;
}

.faq-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.faq-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.8rem, 5.4vw, 5.9rem);
    line-height: 0.93;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.faq-hero h1 span {
    display: block;
    margin-top: 0.12em;
    color: #ffc838;
    letter-spacing: -0.03em;
}

.faq-hero-intro {
    max-width: 720px;
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

.faq-hero-copy > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 28px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.faq-hero-copy > .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.faq-hero-note {
    display: grid;
    gap: 10px;
    padding: 32px 32px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid #ffc838;
    border-radius: 18px;
    background: rgba(7, 27, 63, 0.52);
    box-shadow: 0 20px 45px rgba(1, 11, 31, 0.16);
}

.faq-hero-note strong {
    font-size: clamp(1.4rem, 1.8vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.faq-hero-note span {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}


/* FAQ body */

.faq-questions {
    padding-top: 104px;
    padding-bottom: 112px;
    background: #f5f7fb;
}

.faq-questions-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1.18fr);
    gap: clamp(58px, 7vw, 110px);
    align-items: start;
}

.faq-categories {
    position: sticky;
    top: 130px;
}

.faq-categories .eyebrow {
    margin-bottom: 14px;
    color: #0b43c5;
}

.faq-categories h2 {
    max-width: 520px;
    margin: 0;
    font-size: clamp(2.7rem, 3.35vw, 3.8rem);
    line-height: 0.99;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.faq-category-nav {
    display: grid;
    gap: 10px;
    margin-top: 34px;
}

.faq-category-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 18px;
    border: 1px solid #d8e0eb;
    border-radius: 12px;
    background: #ffffff;
    color: #071b3f;
    font-weight: 800;
    text-decoration: none;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.faq-category-nav a::after {
    content: ">";
    color: #0b43c5;
    font-weight: 900;
}

.faq-category-nav a:hover {
    border-color: #0b43c5;
    background: #eef4ff;
    color: #0b43c5;
    transform: translateX(3px);
}


/* FAQ groups */

.faq-groups {
    display: grid;
    gap: 74px;
}

.faq-group {
    scroll-margin-top: 145px;
}

.faq-group > .eyebrow {
    margin-bottom: 12px;
    color: #0b43c5;
}

.faq-group > h3 {
    max-width: 900px;
    margin: 0 0 28px;
    font-size: clamp(2.35rem, 3vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.04em;
    color: #071b3f;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid #d8e0eb;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(8, 26, 67, 0.035);
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 21px 72px 21px 24px;
    cursor: pointer;
    list-style: none;
    font-size: clamp(1.2rem, 1.55vw, 1.48rem);
    font-weight: 850;
    line-height: 1.25;
    letter-spacing: -0.025em;
    color: #071b3f;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 22px;
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #eef4ff;
    color: #0b43c5;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "x";
    background: #0b43c5;
    color: #ffffff;
    font-size: 1.05rem;
}

.faq-item[open] summary {
    border-bottom: 1px solid #e1e6ef;
}

.faq-answer {
    padding: 20px 72px 24px 24px;
}

.faq-answer p {
    max-width: 820px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
    color: #586579;
}


/* Closing */

.faq-closing {
    padding-top: 102px;
    padding-bottom: 104px;
    background: #ffc838;
}

.faq-closing-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.faq-closing .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.faq-closing h2 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3rem, 4.4vw, 4.9rem);
    line-height: 0.97;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.faq-closing h2 span {
    display: block;
    margin-top: 0.08em;
    color: #0b43c5;
}

.faq-closing-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.faq-closing-copy p {
    max-width: 470px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #071b3f;
}

.faq-closing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.faq-closing .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.faq-page a:focus-visible,
.faq-item summary:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.faq-questions a:focus-visible,
.faq-item summary:focus-visible {
    outline-color: #0b43c5;
}


/* Tablet */

@media (max-width: 1100px) {

    .faq-hero-grid,
    .faq-questions-grid,
    .faq-closing-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .faq-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.44fr);
        gap: 44px;
    }

    .faq-questions-grid {
        grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1.22fr);
        gap: 48px;
    }

    .faq-closing-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .faq-hero-grid,
    .faq-questions-grid,
    .faq-closing-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .faq-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 82px;
    }

    .faq-hero-note {
        max-width: 620px;
    }

    .faq-questions {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .faq-questions-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .faq-categories {
        position: static;
    }

    .faq-categories h2 {
        max-width: 720px;
    }

    .faq-category-nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-groups {
        gap: 62px;
    }

    .faq-closing {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .faq-closing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-closing-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .faq-hero-grid,
    .faq-questions-grid,
    .faq-closing-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .faq-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .faq-hero h1 {
        font-size: clamp(2.9rem, 12.5vw, 4.05rem);
        line-height: 0.94;
    }

    .faq-hero-intro {
        margin-top: 24px;
        font-size: 1rem;
    }

    .faq-hero-copy > .btn {
        width: 100%;
    }

    .faq-hero-note {
        padding: 26px 24px;
        border-radius: 16px;
    }

    .faq-categories h2,
    .faq-closing h2 {
        font-size: clamp(2.6rem, 11.5vw, 3.6rem);
    }

    .faq-category-nav {
        grid-template-columns: 1fr;
    }

    .faq-group > h3 {
        font-size: clamp(2rem, 9.5vw, 2.75rem);
    }

    .faq-item summary {
        min-height: 70px;
        padding: 19px 62px 19px 20px;
        font-size: 1.12rem;
    }

    .faq-item summary::after {
        right: 18px;
        width: 32px;
        height: 32px;
    }

    .faq-answer {
        padding: 18px 20px 22px;
    }

    .faq-closing .btn {
        width: 100%;
    }
}

/* TAKE A SEAT FAQ LEFT RAIL DESKTOP FIT START */

@media (min-width: 821px) {

    .faq-questions-grid {
        grid-template-columns:
            minmax(0, 0.56fr)
            minmax(0, 1.04fr);
        gap: clamp(48px, 5vw, 76px);
    }

    .faq-categories h2 {
        max-width: 620px;
        font-size: clamp(2.5rem, 3vw, 3.35rem);
        line-height: 0.99;
    }
}

/* TAKE A SEAT FAQ LEFT RAIL DESKTOP FIT END */

/* TAKE A SEAT PREMIUM FAQ PAGE END */

/* TAKE A SEAT PREMIUM CONTACT PAGE START */

.contact-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* Hero */

.contact-hero {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(
            100deg,
            rgba(7, 27, 63, 0.65) 0%,
            rgba(7, 27, 63, 0.54) 28%,
            rgba(11, 52, 139, 0.33) 48%,
            rgba(7, 27, 63, 0.21) 68%,
            rgba(7, 27, 63, 0.18) 100%
        ),
        url("../images/contact/contact-hero-human-help.webp")
        center right / cover no-repeat;
    color: #ffffff;
    isolation: isolate;
}

.contact-hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -170px;
    top: -250px;
    border: 78px solid rgba(255, 255, 255, 0.045);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero-grid {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.46fr);
    gap: clamp(56px, 7vw, 110px);
    align-items: center;
    min-height: 600px;
    padding-top: 92px;
    padding-bottom: 96px;
}

.contact-hero-copy {
    max-width: 940px;
}

.contact-hero .eyebrow {
    margin-bottom: 18px;
    color: #ffc838;
}

.contact-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3.8rem, 5.35vw, 5.9rem);
    line-height: 0.93;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.contact-hero h1 span {
    display: block;
    margin-top: 0.12em;
    color: #ffc838;
    letter-spacing: -0.03em;
}

.contact-hero-intro {
    max-width: 730px;
    margin: 28px 0 0;
    font-size: clamp(1.05rem, 1.2vw, 1.22rem);
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.88);
}

.contact-hero-copy > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    margin-top: 30px;
    padding: 0 28px;
    border: 2px solid #ffc838;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.contact-hero-copy > .btn:hover {
    border-color: #ffffff;
    background: #ffffff;
}

.contact-hero-note {
    display: grid;
    gap: 10px;
    padding: 32px 32px 34px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 5px solid #ffc838;
    border-radius: 18px;
    background: rgba(7, 27, 63, 0.52);
    box-shadow: 0 20px 45px rgba(1, 11, 31, 0.16);
}

.contact-hero-note strong {
    font-size: clamp(1.4rem, 1.8vw, 1.9rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.contact-hero-note span {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
}


/* Contact methods */

.contact-options {
    padding-top: 104px;
    padding-bottom: 112px;
    background: #f5f7fb;
}

.contact-options > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.contact-options-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(48px, 6vw, 86px);
    align-items: end;
    margin-bottom: 52px;
}

.contact-options-heading .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.contact-options-heading h2 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3rem, 4vw, 4.55rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.contact-options-heading > p {
    max-width: 450px;
    margin: 0;
    justify-self: end;
    font-size: 1rem;
    line-height: 1.72;
    color: #566276;
}

.contact-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.contact-option {
    position: relative;
    min-height: 350px;
    padding: 36px 36px 38px;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.05);
}

.contact-option-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: clamp(5rem, 7.2vw, 7.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(11, 67, 197, 0.055);
}

.contact-option .eyebrow {
    position: relative;
    z-index: 1;
    margin-bottom: 16px;
    color: #0b43c5;
}

.contact-option h3 {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 0;
    font-size: clamp(1.85rem, 2.2vw, 2.45rem);
    line-height: 1.03;
    letter-spacing: -0.04em;
    color: #071b3f;
    overflow-wrap: anywhere;
}

.contact-option > p:not(.eyebrow) {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 20px 0 0;
    font-size: 0.99rem;
    line-height: 1.68;
    color: #586579;
}

.contact-option > a {
    position: absolute;
    left: 36px;
    bottom: 34px;
    z-index: 1;
    color: #0b43c5;
    font-weight: 900;
    text-decoration: none;
}

.contact-option > a:hover {
    text-decoration: underline;
}


/* Form */

.contact-form-section {
    padding: 108px 0;
    background: #071b3f;
    color: #ffffff;
}

.contact-form-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(58px, 7vw, 110px);
    align-items: start;
}

.contact-form-copy {
    position: sticky;
    top: 130px;
}

.contact-form-copy .eyebrow {
    margin-bottom: 15px;
    color: #ffc838;
}

.contact-form-copy h2 {
    max-width: 690px;
    margin: 0;
    font-size: clamp(2.95rem, 3.8vw, 4.25rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.contact-form-copy > p {
    max-width: 600px;
    margin: 26px 0 0;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
}

.contact-hours {
    display: grid;
    gap: 14px;
    max-width: 520px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-hours .eyebrow {
    margin: 0 0 6px;
}

.contact-hours > p {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 22px;
    margin: 0;
    color: #ffffff;
}

.contact-hours strong {
    font-size: 1rem;
}

.contact-hours span {
    color: rgba(255, 255, 255, 0.75);
}

.contact-hours small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.56);
}


/* Form card */

.contact-form {
    display: grid;
    gap: 22px;
    padding: clamp(30px, 4vw, 52px);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 24px 60px rgba(0, 8, 28, 0.22);
}

.contact-field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.contact-field {
    display: grid;
    gap: 9px;
}

.contact-field label {
    font-size: 0.93rem;
    font-weight: 850;
    color: #071b3f;
}

.contact-field label span {
    margin-left: 5px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #748096;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    border: 1px solid #ccd5e2;
    border-radius: 12px;
    background: #f8faff;
    color: #071b3f;
    font: inherit;
    transition:
        border-color 160ms ease,
        background 160ms ease,
        box-shadow 160ms ease;
}

.contact-field input,
.contact-field select {
    min-height: 52px;
    padding: 0 15px;
}

.contact-field textarea {
    min-height: 176px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.55;
}

.contact-field input:hover,
.contact-field select:hover,
.contact-field textarea:hover {
    border-color: #9aacC4;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: #0b43c5;
    outline: none;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(11, 67, 197, 0.12);
}

.contact-form > .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 54px;
    padding: 0 28px;
    border: 2px solid #0b43c5;
    border-radius: 999px;
    background: #0b43c5;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
}

.contact-form > .btn:hover {
    border-color: #071b3f;
    background: #071b3f;
}

.contact-form-note {
    margin: -4px 0 0;
    font-size: 0.82rem;
    line-height: 1.5;
    color: #778397;
}


/* Closing */

.contact-closing {
    padding-top: 102px;
    padding-bottom: 104px;
    background: #ffc838;
}

.contact-closing-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.contact-closing .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.contact-closing h2 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3rem, 4.4vw, 4.9rem);
    line-height: 0.97;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.contact-closing h2 span {
    display: block;
    margin-top: 0.08em;
    color: #0b43c5;
}

.contact-closing-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.contact-closing-copy p {
    max-width: 500px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #071b3f;
}

.contact-closing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.contact-closing .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.contact-page a:focus-visible,
.contact-page button:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.contact-closing a:focus-visible {
    outline-color: #071b3f;
}


/* Tablet */

@media (max-width: 1100px) {

    .contact-hero-grid,
    .contact-options > .container,
    .contact-form-grid,
    .contact-closing-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .contact-hero-grid {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.44fr);
        gap: 44px;
    }

    .contact-options-heading {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
        gap: 42px;
    }

    .contact-form-grid {
        grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
        gap: 50px;
    }

    .contact-closing-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .contact-hero-grid,
    .contact-options > .container,
    .contact-form-grid,
    .contact-closing-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 80px;
        padding-bottom: 82px;
    }

    .contact-hero-note {
        max-width: 620px;
    }

    .contact-options {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .contact-options-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-options-heading > p {
        max-width: 640px;
        justify-self: start;
    }

    .contact-option-grid {
        grid-template-columns: 1fr;
    }

    .contact-option {
        min-height: 300px;
    }

    .contact-form-section {
        padding: 84px 0;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .contact-form-copy {
        position: static;
    }

    .contact-closing {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .contact-closing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-closing-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .contact-hero-grid,
    .contact-options > .container,
    .contact-form-grid,
    .contact-closing-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .contact-hero-grid {
        gap: 34px;
        padding-top: 64px;
        padding-bottom: 68px;
    }

    .contact-hero h1 {
        font-size: clamp(2.9rem, 12.5vw, 4.05rem);
        line-height: 0.94;
    }

    .contact-hero-intro {
        margin-top: 24px;
        font-size: 1rem;
    }

    .contact-hero-copy > .btn {
        width: 100%;
    }

    .contact-hero-note {
        padding: 26px 24px;
        border-radius: 16px;
    }

    .contact-options-heading h2,
    .contact-form-copy h2,
    .contact-closing h2 {
        font-size: clamp(2.6rem, 11.5vw, 3.6rem);
    }

    .contact-option {
        min-height: 310px;
        padding: 28px 25px 30px;
    }

    .contact-option > a {
        left: 25px;
        bottom: 28px;
    }

    .contact-field-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 25px 20px 27px;
        border-radius: 18px;
    }

    .contact-form > .btn {
        width: 100%;
    }

    .contact-hours > p {
        display: grid;
        gap: 3px;
    }

    .contact-closing .btn {
        width: 100%;
    }
}

/* TAKE A SEAT CONTACT EMAIL HEADING FIT START */

@media (min-width: 821px) {

    .contact-option:nth-child(3) h3 {
        font-size: clamp(1.45rem, 1.7vw, 1.85rem);
        letter-spacing: -0.025em;
        overflow-wrap: normal;
        word-break: normal;
    }
}

/* TAKE A SEAT CONTACT EMAIL HEADING FIT END */

/* TAKE A SEAT PREMIUM CONTACT PAGE END */

/* TAKE A SEAT PREMIUM PRODUCT PAGE START */

.product-page {
    background: #f5f7fb;
    color: #071b3f;
}


/* Product detail */

.product-detail {
    padding-top: 42px;
    padding-bottom: 108px;
    background: #ffffff;
}

.product-detail > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
    font-size: 0.88rem;
    color: #69758a;
}

.product-breadcrumbs a {
    color: #0b43c5;
    font-weight: 800;
    text-decoration: none;
}

.product-breadcrumbs a:hover {
    text-decoration: underline;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.74fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: start;
}


/* Product media */

.product-media {
    min-width: 0;
}

.product-main-image {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border-radius: 24px;
    background: #eef2f8;
    box-shadow: 0 22px 50px rgba(8, 26, 67, 0.10);
}

.product-main-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    object-position: center;
}

.product-sale-badge {
    position: absolute;
    top: 22px;
    left: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    background: #ffc838;
    color: #071b3f;
    font-size: 0.8rem;
    font-weight: 950;
    letter-spacing: 0.10em;
}

.product-image-note {
    max-width: 720px;
    margin: 16px 0 0;
    font-size: 0.84rem;
    line-height: 1.6;
    color: #758095;
}


/* Product info */

.product-info {
    position: sticky;
    top: 132px;
    min-width: 0;
}

.product-info > .eyebrow {
    margin-bottom: 14px;
    color: #0b43c5;
}

.product-info h1 {
    max-width: 620px;
    margin: 0;
    font-size: clamp(3rem, 4.1vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.product-tagline {
    max-width: 600px;
    margin: 22px 0 0;
    font-size: clamp(1.08rem, 1.3vw, 1.24rem);
    line-height: 1.65;
    color: #566276;
}

.product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid #dbe2ed;
}

.product-price-current {
    font-size: clamp(2.35rem, 3vw, 3.15rem);
    font-weight: 950;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #071b3f;
}

.product-price-old {
    font-size: 1.1rem;
    color: #8b95a6;
    text-decoration: line-through;
}

.product-price-save {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0 11px;
    border-radius: 999px;
    background: #fff3c5;
    color: #8b5d00;
    font-size: 0.78rem;
    font-weight: 900;
}

.product-summary {
    padding: 24px 0 0;
}

.product-summary p {
    max-width: 600px;
    margin: 0;
    font-size: 1rem;
    line-height: 1.72;
    color: #566276;
}

.product-status {
    display: grid;
    margin-top: 28px;
    border-top: 1px solid #dbe2ed;
    border-bottom: 1px solid #dbe2ed;
}

.product-status > div {
    display: grid;
    grid-template-columns: 122px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 0;
}

.product-status > div + div {
    border-top: 1px solid #dbe2ed;
}

.product-status-label {
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b43c5;
}

.product-status strong {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #071b3f;
}

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.product-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.product-actions .btn-primary {
    border: 2px solid #0b43c5;
    background: #0b43c5;
    color: #ffffff;
}

.product-actions .btn-primary:hover {
    border-color: #071b3f;
    background: #071b3f;
}

.product-actions .btn-secondary {
    border: 2px solid #cdd6e4;
    background: #ffffff;
    color: #071b3f;
}

.product-actions .btn-secondary:hover {
    border-color: #0b43c5;
    color: #0b43c5;
}

.product-small-print {
    max-width: 600px;
    margin: 20px 0 0;
    font-size: 0.8rem;
    line-height: 1.55;
    color: #7b8698;
}


/* Highlights */

.product-highlights {
    padding-top: 104px;
    padding-bottom: 112px;
    background: #f5f7fb;
}

.product-highlights > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-highlights-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.5fr);
    gap: clamp(48px, 6vw, 86px);
    align-items: end;
    margin-bottom: 52px;
}

.product-highlights-heading .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.product-highlights-heading h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3rem, 4vw, 4.55rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.product-highlights-heading > p {
    max-width: 440px;
    margin: 0;
    justify-self: end;
    font-size: 1rem;
    line-height: 1.72;
    color: #566276;
}

.product-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-highlight {
    position: relative;
    min-height: 310px;
    padding: 36px 36px 38px;
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.05);
}

.product-highlight-number {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: clamp(5rem, 7.2vw, 7.4rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.07em;
    color: rgba(11, 67, 197, 0.055);
}

.product-highlight h3 {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0;
    font-size: clamp(2rem, 2.3vw, 2.5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    color: #071b3f;
}

.product-highlight p {
    position: relative;
    z-index: 1;
    max-width: 520px;
    margin: 22px 0 0;
    font-size: 0.99rem;
    line-height: 1.67;
    color: #586579;
}


/* Specs */

.product-specs {
    padding: 104px 0;
    background: #071b3f;
    color: #ffffff;
}

.product-specs-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(58px, 7vw, 110px);
    align-items: start;
}

.product-specs-copy {
    position: sticky;
    top: 132px;
}

.product-specs-copy .eyebrow {
    margin-bottom: 15px;
    color: #ffc838;
}

.product-specs-copy h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(2.85rem, 3.65vw, 4.15rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #ffffff;
}

.product-specs-copy > p {
    max-width: 590px;
    margin: 26px 0 0;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
}

.product-spec-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-spec-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: baseline;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.product-spec-row span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
}

.product-spec-row strong {
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1;
    letter-spacing: -0.035em;
    color: #ffffff;
}


/* Planning */

.product-planning {
    padding-top: 102px;
    padding-bottom: 104px;
    background: #ffffff;
}

.product-planning-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.52fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.product-planning .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.product-planning h2 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(3rem, 4.1vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.product-planning-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.product-planning-copy p {
    max-width: 500px;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.72;
    color: #566276;
}

.product-planning .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 25px;
    border: 2px solid #0b43c5;
    border-radius: 999px;
    background: #0b43c5;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.product-planning .btn:hover {
    border-color: #071b3f;
    background: #071b3f;
}


/* Related products */

.product-related {
    padding-top: 104px;
    padding-bottom: 112px;
    background: #f5f7fb;
}

.product-related > .container {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.product-related-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 44px;
}

.product-related-heading .eyebrow {
    margin-bottom: 14px;
    color: #0b43c5;
}

.product-related-heading h2 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(2.9rem, 3.8vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.product-related-heading > a {
    flex: 0 0 auto;
    color: #0b43c5;
    font-weight: 900;
    text-decoration: none;
}

.product-related-heading > a:hover {
    text-decoration: underline;
}

.product-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-related-card {
    overflow: hidden;
    border: 1px solid #d9e0eb;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(8, 26, 67, 0.05);
}

.product-related-image {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #edf1f7;
}

.product-related-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 240ms ease;
}

.product-related-card:hover .product-related-image img {
    transform: scale(1.025);
}

.product-related-copy {
    padding: 26px 28px 30px;
}

.product-related-copy .eyebrow {
    margin-bottom: 10px;
    color: #0b43c5;
}

.product-related-copy h3 {
    margin: 0;
    font-size: clamp(1.75rem, 2vw, 2.15rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
}

.product-related-copy h3 a {
    color: #071b3f;
    text-decoration: none;
}

.product-related-copy h3 a:hover {
    color: #0b43c5;
}

.product-related-copy > p:not(.eyebrow) {
    margin: 16px 0 0;
    font-size: 0.96rem;
    line-height: 1.65;
    color: #586579;
}


/* Closing */

.product-closing {
    padding-top: 102px;
    padding-bottom: 104px;
    background: #ffc838;
}

.product-closing-grid {
    width: min(calc(100% - 72px), 1400px);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.48fr);
    gap: clamp(56px, 7vw, 100px);
    align-items: center;
}

.product-closing .eyebrow {
    margin-bottom: 15px;
    color: #0b43c5;
}

.product-closing h2 {
    max-width: 980px;
    margin: 0;
    font-size: clamp(3rem, 4.2vw, 4.7rem);
    line-height: 0.97;
    letter-spacing: -0.045em;
    color: #071b3f;
}

.product-closing h2 span {
    display: block;
    margin-top: 0.08em;
    color: #0b43c5;
}

.product-closing-copy {
    display: grid;
    gap: 26px;
    justify-items: start;
}

.product-closing-copy p {
    max-width: 480px;
    margin: 0;
    font-size: 1.04rem;
    line-height: 1.7;
    color: #071b3f;
}

.product-closing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 26px;
    border: 2px solid #071b3f;
    border-radius: 999px;
    background: #071b3f;
    color: #ffffff;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.product-closing .btn:hover {
    background: #ffffff;
    color: #071b3f;
}


/* Accessibility */

.product-page a:focus-visible {
    outline: 3px solid #ffc838;
    outline-offset: 4px;
}

.product-detail a:focus-visible,
.product-related a:focus-visible,
.product-planning a:focus-visible {
    outline-color: #0b43c5;
}


/* Tablet */

@media (max-width: 1100px) {

    .product-detail > .container,
    .product-highlights > .container,
    .product-specs-grid,
    .product-planning-grid,
    .product-related > .container,
    .product-closing-grid {
        width: min(calc(100% - 56px), 1400px);
    }

    .product-detail-grid {
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
        gap: 44px;
    }

    .product-main-image,
    .product-main-image img {
        min-height: 540px;
    }

    .product-highlights-heading {
        grid-template-columns: minmax(0, 1fr) minmax(290px, 0.48fr);
        gap: 42px;
    }

    .product-specs-grid {
        grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
        gap: 50px;
    }

    .product-planning-grid,
    .product-closing-grid {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
        gap: 48px;
    }
}


/* Small tablet */

@media (max-width: 820px) {

    .product-detail > .container,
    .product-highlights > .container,
    .product-specs-grid,
    .product-planning-grid,
    .product-related > .container,
    .product-closing-grid {
        width: min(calc(100% - 40px), 1400px);
    }

    .product-detail {
        padding-top: 30px;
        padding-bottom: 84px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .product-info {
        position: static;
    }

    .product-main-image,
    .product-main-image img {
        min-height: 500px;
    }

    .product-highlights {
        padding-top: 84px;
        padding-bottom: 88px;
    }

    .product-highlights-heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .product-highlights-heading > p {
        max-width: 640px;
        justify-self: start;
    }

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

    .product-highlight {
        min-height: 0;
    }

    .product-specs {
        padding: 84px 0;
    }

    .product-specs-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .product-specs-copy {
        position: static;
    }

    .product-planning {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .product-planning-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-planning-copy {
        max-width: 620px;
    }

    .product-related {
        padding-top: 84px;
        padding-bottom: 88px;
    }

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

    .product-related-heading {
        align-items: start;
    }

    .product-closing {
        padding-top: 82px;
        padding-bottom: 84px;
    }

    .product-closing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .product-closing-copy {
        max-width: 620px;
    }
}


/* Mobile */

@media (max-width: 560px) {

    .product-detail > .container,
    .product-highlights > .container,
    .product-specs-grid,
    .product-planning-grid,
    .product-related > .container,
    .product-closing-grid {
        width: min(calc(100% - 32px), 1400px);
    }

    .product-breadcrumbs {
        margin-bottom: 24px;
    }

    .product-main-image,
    .product-main-image img {
        min-height: 360px;
    }

    .product-main-image {
        border-radius: 18px;
    }

    .product-sale-badge {
        top: 16px;
        left: 16px;
    }

    .product-info h1 {
        font-size: clamp(2.75rem, 12vw, 3.9rem);
    }

    .product-status > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .product-actions {
        display: grid;
    }

    .product-actions .btn {
        width: 100%;
    }

    .product-highlights-heading h2,
    .product-specs-copy h2,
    .product-planning h2,
    .product-related-heading h2,
    .product-closing h2 {
        font-size: clamp(2.55rem, 11vw, 3.55rem);
    }

    .product-highlight {
        padding: 28px 25px 30px;
    }

    .product-spec-row {
        grid-template-columns: 1fr auto;
        gap: 18px;
    }

    .product-related-heading {
        display: grid;
        gap: 18px;
    }

    .product-related-copy {
        padding: 23px 22px 26px;
    }

    .product-planning .btn,
    .product-closing .btn {
        width: 100%;
    }
}

/* TAKE A SEAT PRODUCT SPECS HEADLINE FIT START */

@media (min-width: 821px) {

    .product-specs-grid {
        grid-template-columns:
            minmax(0, 0.98fr)
            minmax(0, 1.02fr);
        gap: clamp(48px, 5vw, 76px);
    }

    .product-specs-copy h2 {
        max-width: 760px;
        font-size: clamp(2.7rem, 3.25vw, 3.8rem);
        line-height: 0.98;
    }

    .product-specs-copy > p {
        max-width: 640px;
    }
}

/* TAKE A SEAT PRODUCT SPECS HEADLINE FIT END */

/* TAKE A SEAT PRODUCT SPECS FINAL FIT START */

@media (min-width: 821px) {

    .product-specs-copy h2 {
        max-width: 700px;
    }
}

/* TAKE A SEAT PRODUCT SPECS FINAL FIT END */

/* TAKE A SEAT PRODUCT SPECS LEADING FIX START */

@media (min-width: 821px) {

    .product-specs-copy h2 {
        line-height: 1.08;
    }
}

/* TAKE A SEAT PRODUCT SPECS LEADING FIX END */

/* TAKE A SEAT PREMIUM PRODUCT PAGE END */
