/* Shared visual system for site colors, typography, layout, components, and motion. */

:root {
    --navy-950: #081728; /* Shared footer styles. */
    --navy-900: #10263d; /* Button and call-to-action styles. */
    --navy-800: #173652; /* Pointer hover and focus interaction styles. */
    --gold-500: #c8a86b; /* Button and call-to-action styles. */
    --gold-400: #d9be88; /* Typography styles. */
    --ink-900: #17212b; /* Text color token. */
    --ink-700: #44505c; /* Text color token. */
    --ink-500: #69737d; /* Text color token. */
    --line: #dde2e6; /* Border and divider color token. */
    --white: #ffffff; /* Component styles. */
    --shadow-sm: 0 12px 34px rgba(8, 23, 40, 0.08); /* Card component styles. */
    --shadow-lg: 0 26px 70px rgba(8, 23, 40, 0.18); /* Shared elevation and shadow styles. */
    --radius-sm: 4px; /* Button and call-to-action styles. */
    --radius-md: 10px; /* Card component styles. */
    --site-width: 1200px; /* Typography styles. */
    --nav-height: 94px; /* Floating site navigation styles. */
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1); /* Motion and transition styles. */
}

/* Shared design token. */

/* Dealer Portal component styles. */
.section.dealer-access {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 84% 8%, rgba(200, 168, 107, 0.11), transparent 34%),
        var(--navy-900);
}

/* Text color token. */
.section.dealer-access .section-title,
.section.dealer-access .dealer-location-card h3 {
    color: #ffffff;
}

.section.dealer-access .dealer-access__heading p,
.section.dealer-access .dealer-location-card p {
    color: rgba(255, 255, 255, 0.75);
}

/* Dealer Portal component styles. */
.section.dealer-access .dealer-location-card {
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035));
}

.section.dealer-access .dealer-location-card:hover {
    border-color: rgba(217, 190, 136, 0.78);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

/* Dealer Portal component styles. */
.dealer-location-card__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    margin: -22px -22px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

/* Dealer Portal component styles. */
.dealer-location-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.dealer-location-card:hover .dealer-location-card__media img {
    filter: saturate(1.06);
    transform: scale(1.045);
}

/* Button and call-to-action styles. */
.section.dealer-access .dealer-location-card__actions .button,
.section.dealer-access .dealer-location-card__actions .button--outline {
    color: #ffffff;
    border-color: rgba(217, 190, 136, 0.72);
    background: var(--navy-950);
}

.section.dealer-access .dealer-location-card__actions .button:hover,
.section.dealer-access .dealer-location-card__actions .button:focus-visible,
.section.dealer-access .dealer-location-card__actions .button--outline:hover,
.section.dealer-access .dealer-location-card__actions .button--outline:focus-visible {
    color: #ffffff;
    border-color: var(--gold-400);
    background: var(--navy-800);
}

/* Component styles. */
.section.dealer-access .dealer-link-placeholder {
    color: rgba(255, 255, 255, 0.78);
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(4, 15, 27, 0.56);
}

/* Homepage hero carousel styles. */
.dealer-hero .button-row .button,
.dealer-hero .button-row .button--outline {
    color: #ffffff;
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.dealer-hero .button-row .button:hover,
.dealer-hero .button-row .button:focus-visible,
.dealer-hero .button-row .button--outline:hover,
.dealer-hero .button-row .button--outline:focus-visible {
    color: #ffffff;
    border-color: var(--gold-500);
    background: var(--navy-800);
}

/* Responsive styles for smaller screens. */
@media (max-width: 720px) {
    .dealer-location-card__media {
        margin: -10px -8px 24px;
        border-radius: 16px;
    }
}

/* Dealer Portal location menu styles. */

/* Dealer Portal component styles. */
.dealer-menu__button {
    display: inline-flex;
    min-height: 50px;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid var(--navy-900);
    border-radius: 15px;
    background: var(--navy-900);
    box-shadow: 0 10px 24px rgba(8, 23, 40, 0.12);
    transition: background 220ms ease, transform 220ms var(--ease-out),
        box-shadow 220ms ease;
}

.dealer-menu__button:hover,
.dealer-menu:focus-within .dealer-menu__button {
    background: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(8, 23, 40, 0.18);
}

/* Dealer Portal page and hero styles. */
.dealer-menu__portal-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 15px 12px 20px;
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Floating site navigation styles. */
.dealer-menu__trigger,
.site-nav .dealer-menu__trigger {
    display: inline-flex;
    width: 42px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    background: transparent;
    cursor: pointer;
}

.dealer-menu.is-active .dealer-menu__button {
    box-shadow: 0 0 0 2px var(--gold-500), 0 12px 28px rgba(8, 23, 40, 0.16);
}

/* Dealer Portal page and hero styles. */
.dealer-hero {
    position: relative;
    overflow: hidden;
    padding: 184px 0 96px;
    background:
        radial-gradient(circle at 13% 15%, rgba(200, 168, 107, 0.17), transparent 26%),
        linear-gradient(135deg, #f7f7f5 0%, #ffffff 55%, #eef2f4 100%);
}

.dealer-hero::after {
    position: absolute;
    right: -110px;
    bottom: -170px;
    width: 440px;
    height: 440px;
    border: 1px solid rgba(200, 168, 107, 0.32);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.dealer-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
    gap: clamp(48px, 7vw, 104px);
    align-items: center;
}

.dealer-hero__copy .display-title {
    max-width: 690px;
    color: var(--navy-900);
    font-size: clamp(3.3rem, 5.3vw, 6.2rem);
}

.dealer-hero__copy > p {
    max-width: 640px;
    margin: 28px 0 0;
    color: var(--ink-700);
    font-size: clamp(1.05rem, 1.35vw, 1.22rem);
}

.dealer-hero__visual {
    position: relative;
    min-height: clamp(520px, 48vw, 690px);
    overflow: hidden;
    border-radius: 34px 34px 130px 34px;
    background: var(--navy-900);
    box-shadow: 0 34px 80px rgba(8, 23, 40, 0.22);
}

.dealer-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(8, 23, 40, 0.34));
    content: "";
    pointer-events: none;
}

.dealer-hero__visual > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: dealerImageBreath 10s ease-in-out infinite alternate;
}

.dealer-hero__badge {
    position: absolute;
    z-index: 2;
    display: grid;
    min-width: 164px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 18px;
    color: var(--white);
    background: rgba(8, 23, 40, 0.78);
    box-shadow: 0 16px 36px rgba(8, 23, 40, 0.22);
    backdrop-filter: blur(14px);
}

.dealer-hero__badge strong {
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dealer-hero__badge span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
}

.dealer-hero__badge--year {
    bottom: 28px;
    left: 28px;
}

.dealer-hero__badge--locations {
    right: 28px;
    bottom: 28px;
}

@keyframes dealerImageBreath {
    from { transform: scale(1.01); }
    to { transform: scale(1.065); }
}

/* Homepage hero carousel styles. */
.dealer-proof {
    color: var(--white);
    background: var(--navy-950);
}

.dealer-proof__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dealer-proof__card {
    display: grid;
    min-height: 300px;
    grid-template-columns: 116px 1fr;
    gap: 26px;
    align-items: center;
    padding: 48px 38px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 300ms ease;
}

.dealer-proof__card:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.dealer-proof__card:hover {
    background: rgba(255, 255, 255, 0.045);
}

.dealer-proof__number {
    display: block;
    margin-bottom: 14px;
    color: var(--gold-400);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
}

.dealer-proof__card h2 {
    margin-bottom: 12px;
    font-size: clamp(1.6rem, 2.2vw, 2.35rem);
}

.dealer-proof__card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

/* Motion and transition styles. */
.dealer-model {
    position: relative;
    width: 112px;
    height: 112px;
    border: 1px solid rgba(217, 190, 136, 0.45);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    animation: dealerModelFloat 4.8s ease-in-out infinite;
}

.dealer-proof__card:nth-child(2) .dealer-model { animation-delay: -1.5s; }
.dealer-proof__card:nth-child(3) .dealer-model { animation-delay: -3s; }

@keyframes dealerModelFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-7px) rotate(1deg); }
}

.dealer-model--stock span {
    position: absolute;
    right: 20px;
    left: 20px;
    height: 17px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    background: rgba(200, 168, 107, 0.2);
}
.dealer-model--stock span:nth-child(1) { top: 22px; }
.dealer-model--stock span:nth-child(2) { top: 47px; }
.dealer-model--stock span:nth-child(3) { top: 72px; }
.dealer-model--stock i { position: absolute; inset: 14px; border-right: 2px solid var(--gold-500); border-left: 2px solid var(--gold-500); }

.dealer-model--map span {
    position: absolute;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 2px solid var(--gold-500);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 800;
    transform: none;
}
.dealer-model--map span:nth-child(1) { top: 18px; left: 18px; }
.dealer-model--map span:nth-child(2) { top: 44px; right: 17px; }
.dealer-model--map span:nth-child(3) { bottom: 14px; left: 31px; }
.dealer-model--map i { position: absolute; top: 53px; left: 28px; width: 56px; height: 1px; background: rgba(255, 255, 255, 0.3); transform: rotate(24deg); }

.dealer-model--trade span {
    position: absolute;
    top: 23px;
    left: 25px;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 2px solid var(--gold-500);
    border-radius: 50%;
    color: var(--gold-400);
    font: 500 2rem/1 Baskerville, serif;
}
.dealer-model--trade i,
.dealer-model--trade b { position: absolute; right: 15px; bottom: 17px; width: 38px; height: 17px; border-radius: 4px; background: rgba(255, 255, 255, 0.13); }
.dealer-model--trade b { right: auto; bottom: 13px; left: 14px; width: 30px; background: rgba(200, 168, 107, 0.26); }

/* Card component styles. */
.dealer-audience__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.dealer-audience__card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 26px;
    color: var(--white);
    background: var(--navy-900);
    box-shadow: var(--shadow-sm);
}

.dealer-audience__card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 15, 27, 0.92) 0%, rgba(4, 15, 27, 0.18) 60%, transparent 100%);
    content: "";
}

.dealer-audience__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease-out), filter 500ms ease;
}

.dealer-audience__card:hover img {
    filter: saturate(1.08);
    transform: scale(1.07);
}

.dealer-audience__card > div {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 34px;
}

.dealer-audience__card > div > span {
    color: var(--gold-400);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.dealer-audience__card h3 {
    margin: 10px 0 12px;
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.dealer-audience__card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
}

/* Dealer Portal component styles. */
.dealer-access {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-900);
}

.dealer-access::before {
    position: absolute;
    top: -270px;
    right: -140px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(200, 168, 107, 0.24);
    border-radius: 50%;
    content: "";
}

.dealer-access__heading {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.45fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 52px;
}

.dealer-access__heading .eyebrow { grid-column: 1 / -1; margin-bottom: -28px; }
.dealer-access__heading .section-title { color: var(--white); }
.dealer-access__heading p { margin: 0; color: rgba(255, 255, 255, 0.68); }

.dealer-access__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.dealer-location-card {
    position: relative;
    overflow: hidden;
    padding: 46px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025));
    transition: border-color 300ms ease, transform 360ms var(--ease-out), background 300ms ease;
}

.dealer-location-card:hover {
    border-color: rgba(217, 190, 136, 0.7);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
    transform: translateY(-7px);
}

.dealer-location-card__state {
    color: var(--gold-400);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dealer-location-card h3 {
    margin: 14px 0 20px;
    font-size: clamp(2.5rem, 4vw, 4.3rem);
}

.dealer-location-card p {
    color: rgba(255, 255, 255, 0.72);
}

.dealer-location-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.dealer-link-placeholder {
    cursor: not-allowed;
    opacity: 0.55;
}

/* Image presentation styles. */
.dealer-story {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: clamp(44px, 7vw, 96px);
    align-items: center;
    margin-top: 70px;
}

.dealer-story--reverse {
    grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.08fr);
}

.dealer-story--reverse .dealer-story__image { order: 2; }

.dealer-story__image {
    height: clamp(430px, 45vw, 620px);
    overflow: hidden;
    border-radius: 30px;
    background: #eef0f1;
    box-shadow: var(--shadow-sm);
}

.dealer-story__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease-out);
}

.dealer-story:hover .dealer-story__image img { transform: scale(1.045); }

.dealer-story blockquote {
    margin: 0;
    padding: 32px 0 32px 42px;
    border-left: 1px solid var(--gold-500);
}

.dealer-story blockquote > span {
    color: var(--gold-500);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dealer-story blockquote p {
    margin: 24px 0;
    color: var(--navy-900);
    font: 500 clamp(2rem, 3.5vw, 4rem)/1.15 Baskerville, "Times New Roman", serif;
    letter-spacing: -0.025em;
}

.dealer-story cite {
    color: var(--ink-500);
    font-style: normal;
    font-weight: 700;
}

/* Component styles. */
.dealer-partner__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.dealer-partner__grid article {
    min-height: 330px;
    padding: 42px;
    border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.dealer-partner__grid article:last-child { border-right: 1px solid rgba(255, 255, 255, 0.17); }
.dealer-partner__grid article > span { color: var(--gold-400); font-family: Baskerville, serif; font-size: 1.35rem; }
.dealer-partner__grid h3 { margin: 54px 0 16px; font-size: 2.2rem; }
.dealer-partner__grid p { color: rgba(255, 255, 255, 0.68); }
.dealer-partner__grid .text-link { margin-top: 14px; color: var(--white); }

.dealer-inquiry {
    background: linear-gradient(135deg, #f4f2ed, #ffffff 62%);
}

/* Responsive styles for smaller screens. */
@media (max-width: 1180px) {
    .dealer-hero__grid { grid-template-columns: 1fr 1fr; gap: 42px; }
    .dealer-proof__card { grid-template-columns: 1fr; }
    .dealer-model { width: 96px; height: 96px; }
    .dealer-audience__card { min-height: 460px; }
}

@media (max-width: 900px) {
    .dealer-hero { padding-top: 150px; }
    .dealer-hero__grid,
    .dealer-access__heading,
    .dealer-story,
    .dealer-story--reverse { grid-template-columns: 1fr; }
    .dealer-hero__visual { min-height: 580px; }
    .dealer-proof__grid,
    .dealer-audience__grid,
    .dealer-partner__grid { grid-template-columns: 1fr; }
    .dealer-proof__card { grid-template-columns: 104px 1fr; min-height: 220px; }
    .dealer-audience__card { min-height: 580px; }
    .dealer-access__heading .eyebrow { grid-column: auto; margin-bottom: 0; }
    .dealer-access__grid { grid-template-columns: 1fr; }
    .dealer-story--reverse .dealer-story__image { order: initial; }
    .dealer-partner__grid article,
    .dealer-partner__grid article:last-child { min-height: 0; border-right: 1px solid rgba(255, 255, 255, 0.17); border-bottom: 1px solid rgba(255, 255, 255, 0.17); }
    .dealer-partner__grid h3 { margin-top: 28px; }
}

@media (max-width: 1080px) {
    .dealer-menu__button { width: 100%; }
    .dealer-menu__portal-link { flex: 1; justify-content: center; }
    .site-nav .dealer-menu__trigger { width: 52px; flex: 0 0 52px; }
}

@media (max-width: 620px) {
    .dealer-hero { padding: 132px 0 66px; }
    .dealer-hero__copy .display-title { font-size: clamp(2.8rem, 14vw, 4.4rem); }
    .dealer-hero__visual { min-height: 470px; border-radius: 24px 24px 90px 24px; }
    .dealer-hero__badge { min-width: 0; padding: 13px 15px; }
    .dealer-hero__badge--year { bottom: 18px; left: 18px; }
    .dealer-hero__badge--locations { right: 18px; bottom: 18px; }
    .dealer-proof__card { grid-template-columns: 1fr; padding: 38px 26px; }
    .dealer-audience__card { min-height: 500px; }
    .dealer-location-card { padding: 32px 24px; }
    .dealer-location-card__actions { display: grid; }
    .dealer-story__image { height: 420px; }
    .dealer-story blockquote { padding-left: 24px; }
    .dealer-partner__grid article { padding: 34px 26px; }
}

@media (prefers-reduced-motion: reduce) {
    .dealer-hero__visual > img,
    .dealer-model { animation: none; }
}

/* Layout, grid, and spacing styles. */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
    margin: 0;
    color: var(--ink-900);
    background: var(--white);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

body.nav-open {
    overflow: hidden;
}

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

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

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

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

button {
    color: inherit;
}

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

h1,
h2,
h3,
h4 {
    font-family: Baskerville, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.1;
}

::selection {
    color: var(--white);
    background: var(--navy-800);
}

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

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 12px;
    left: 12px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--navy-950);
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

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

/* Component styles. */
.container {
    /* Component styles. */
    width: min(var(--site-width), calc(100% - 48px));
    margin-inline: auto;
}

.section {
    /* Component styles. */
    padding: 104px 0;
}

.section--compact {
    padding: 76px 0;
}

.section--navy {
    /* Component styles. */
    color: var(--white);
    background: var(--navy-900);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
    gap: 72px;
    align-items: end;
    margin-bottom: 48px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.section--navy .section-heading {
    border-color: rgba(255, 255, 255, 0.18);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--gold-500);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 34px;
    height: 1px;
    background: currentColor;
    content: "";
}

.display-title {
    /* Responsive styles for smaller screens. */
    max-width: 850px;
    margin-bottom: 0;
    font-size: clamp(2.65rem, 5.2vw, 5.5rem);
    letter-spacing: -0.04em;
}

.section-title {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--navy-900);
    font-size: clamp(2.2rem, 4vw, 4rem);
    letter-spacing: -0.035em;
}

.section--navy .section-title {
    color: var(--white);
}

.lead {
    margin-bottom: 0;
    color: var(--ink-700);
    font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.section--navy .lead {
    color: rgba(255, 255, 255, 0.74);
}

.text-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    color: var(--navy-900);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.text-link::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: var(--gold-500);
    transform: scaleX(0.26);
    transform-origin: left;
    transition: transform 360ms var(--ease-out);
    content: "";
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: scaleX(1);
}

.text-link span {
    transition: transform 300ms var(--ease-out);
}

.text-link:hover span {
    transform: translateX(6px);
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    /* Button and call-to-action styles. */
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
    padding: 14px 25px;
    border: 1px solid var(--gold-500);
    border-radius: var(--radius-sm);
    color: var(--navy-950);
    background: var(--gold-500);
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 300ms ease, background 300ms ease, border-color 300ms ease,
        transform 300ms var(--ease-out), box-shadow 300ms ease;
}

.button::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.55) 48%, transparent 74%);
    transform: translateX(-135%);
    transition: transform 650ms ease;
    content: "";
}

.button:hover::before {
    transform: translateX(135%);
}

.button:hover,
.button:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(200, 168, 107, 0.28);
}

.button--outline {
    /* Button and call-to-action styles. */
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
    background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
    color: var(--navy-950);
    border-color: var(--white);
    background: var(--white);
}

/* Button and call-to-action styles. */
.button--outline-dark {
    color: var(--navy-900);
    border-color: var(--navy-900);
    background: transparent;
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
    color: var(--white);
    background: var(--navy-900);
}

.button--navy {
    /* Button and call-to-action styles. */
    color: var(--white);
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.button--navy:hover,
.button--navy:focus-visible {
    box-shadow: 0 12px 30px rgba(16, 38, 61, 0.25);
}

.button--pulse {
    /* Motion and transition styles. */
    animation: buttonPulse 3.2s ease-in-out infinite;
}

/* Floating site navigation styles. */
.site-header {
    /* Floating site navigation styles. */
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    padding: 16px 18px 0;
    color: var(--navy-900);
    background: transparent;
    pointer-events: none;
}

.site-header.is-scrolled .nav-shell {
    /* Floating site navigation styles. */
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 20px 55px rgba(8, 23, 40, 0.18),
        0 2px 8px rgba(8, 23, 40, 0.07);
}

.nav-shell {
    /* Floating site navigation styles. */
    display: flex;
    width: 100%;
    min-height: var(--nav-height);
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-inline: auto;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 34px; /* Floating site navigation styles. */
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 46px rgba(8, 23, 40, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(24px) saturate(145%); /* Component styles. */
    -webkit-backdrop-filter: blur(24px) saturate(145%);
    pointer-events: auto;
    transition: background 250ms ease, box-shadow 250ms ease,
        transform 350ms var(--ease-out);
}

.brand {
    flex: 0 0 auto;
}

.brand img {
    /* Floating site navigation styles. */
    width: auto;
    height: 56px;
    object-fit: contain;
}

.site-nav {
    /* Floating site navigation styles. */
    display: flex;
    align-items: center;
    gap: clamp(20px, 2.5vw, 38px);
}

.site-nav > a:not(.button) {
    /* Floating site navigation styles. */
    position: relative;
    padding: 32px 0 28px;
    color: var(--ink-700);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 240ms ease;
}

.site-nav > a:not(.button)::after {
    position: absolute;
    right: 0;
    bottom: 21px;
    left: 0;
    height: 2px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 300ms var(--ease-out);
    content: "";
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button).is-active {
    color: var(--navy-900);
}

.site-nav > a:hover::after,
.site-nav > a.is-active::after {
    transform: scaleX(1);
}

.site-nav .button {
    /* Dealer Portal component styles. */
    min-height: 48px;
    padding: 12px 20px;
    border-radius: 15px;
}

.nav-toggle {
    /* Responsive mobile navigation styles. */
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid var(--line);
    background: var(--white);
    cursor: pointer;
}

.nav-toggle-box,
.nav-toggle-box::before,
.nav-toggle-box::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    transition: transform 240ms ease, opacity 240ms ease;
    content: "";
}

.nav-toggle-box::before {
    transform: translateY(-7px);
}

.nav-toggle-box::after {
    transform: translateY(5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box::before {
    transform: translateY(0) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-box::after {
    transform: translateY(-2px) rotate(-45deg);
}

/* Homepage hero carousel styles. */
.hero {
    /* Homepage hero carousel styles. */
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    place-items: end start;
    overflow: hidden;
    margin: 0 18px 18px;
    border-radius: 34px; /* Homepage hero carousel styles. */
    color: var(--white);
    background: var(--navy-950);
}

.hero__slides {
    /* Homepage hero carousel styles. */
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__slide {
    /* Image presentation styles. */
    position: absolute;
    inset: -3%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1100ms ease;
}

.hero__slide.is-active {
    opacity: 1;
}

.hero__slide img {
    /* Homepage hero carousel styles. */
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.025);
    transition: transform 7200ms ease-out;
}

.hero__slide.is-active img {
    /* Image lightbox styles. */
    transform: scale(1.09);
}

.hero__slide--campaign img {
    /* Hero typography and content positioning. */
    object-position: 62% center;
}

.hero__slide::before {
    /* Image presentation styles. */
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(4, 15, 27, 0.68) 0%, rgba(4, 15, 27, 0.34) 48%, rgba(4, 15, 27, 0.08) 100%);
    content: "";
    pointer-events: none;
}

.hero__slide--campaign::before {
    /* Hero image overlay and gradient styles. */
    background: linear-gradient(
        90deg,
        rgba(3, 27, 21, 0.86) 0%,
        rgba(3, 27, 21, 0.70) 28%,
        rgba(3, 27, 21, 0.30) 48%,
        rgba(3, 27, 21, 0.05) 72%,
        transparent 100%
    );
}

.hero__slide::after {
    /* Carousel controls and indicator styles. */
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(8, 23, 40, 0.48), transparent 48%);
    content: "";
    pointer-events: none;
}

/* Carousel controls and indicator styles. */
.hero-carousel {
    position: absolute;
    z-index: 3;
    bottom: 35px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateX(-50%);
}

.hero-carousel__arrow,
.hero-carousel__dot {
    border: 1px solid rgba(255, 255, 255, 0.58);
    color: var(--white);
    background: rgba(8, 23, 40, 0.34);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.hero-carousel__arrow {
    display: grid;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    place-items: center;
    font-size: 1rem;
}

.hero-carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
}

.hero-carousel__dot.is-active {
    width: 28px;
    border-color: var(--gold-500);
    border-radius: 999px;
    background: var(--gold-500);
}

.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible,
.hero-carousel__dot:hover,
.hero-carousel__dot:focus-visible {
    border-color: var(--gold-500);
    background: var(--gold-500);
    transform: translateY(-2px);
}

.hero__contents {
    /* Hero typography and content positioning. */
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero__content {
    /* Typography styles. */
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    display: flex;
    width: min(var(--site-width), calc(100% - 48px));
    padding: 210px 0 108px;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 18px);
    transition: opacity 500ms ease, transform 650ms ease, visibility 500ms ease;
}

.hero__content.is-active {
    /* Hero typography and content positioning. */
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
    transition-delay: 280ms;
}

.hero .display-title {
    /* Typography styles. */
    max-width: 1060px;
    font-size: clamp(3.8rem, 7.1vw, 7.8rem);
}

.hero__content--campaign .display-title {
    /* Typography styles. */
    max-width: 760px;
    font-size: clamp(3.8rem, 5.6vw, 6.8rem);
    line-height: 0.94;
}

.hero__content p {
    max-width: 630px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.05rem, 1.8vw, 1.3rem);
}

.hero__content--campaign p {
    /* Product page styles. */
    max-width: 560px;
}

.hero__scroll {
    position: absolute;
    z-index: 2;
    right: 42px;
    bottom: 40px;
    display: grid;
    gap: 9px;
    place-items: center;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero__scroll::after {
    width: 1px;
    height: 52px;
    background: var(--gold-500);
    animation: scrollLine 2s ease-in-out infinite;
    content: "";
}

.page-hero {
    /* Dealer Portal page and hero styles. */
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: end start;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-950);
}

.page-hero__media {
    /* Homepage hero carousel styles. */
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    transition: transform 1.2s var(--ease-out);
}

.page-hero:hover .page-hero__media {
    transform: scale(1.035);
}

.page-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 23, 40, 0.88), rgba(8, 23, 40, 0.34));
    content: "";
}

.page-hero__content {
    position: relative;
    z-index: 1;
    width: min(var(--site-width), calc(100% - 48px));
    margin: 0 auto;
    padding: 190px 0 72px;
}

.page-hero__content .display-title {
    max-width: 760px;
}

.page-hero__content p {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.1rem;
}

.page-hero--products .page-hero__media {
    /* Homepage hero carousel styles. */
    background-image: url("../images/home page cover/home2.jpg");
}

.page-hero--gallery .page-hero__media {
    /* Homepage hero carousel styles. */
    background-image: url("../images/home2.jpeg");
}

.page-hero--dealer .page-hero__media {
    /* Homepage hero carousel styles. */
    background-image: url("../images/home4.jpeg");
}

.page-hero--contact .page-hero__media {
    /* Homepage hero carousel styles. */
    background-image: url("../images/kitchen/kitchen-2.jpg");
}

.page-hero--resources .page-hero__media {
    /* Homepage hero carousel styles. */
    background-image: url("../images/resources-hero.jpg");
    background-position: center 44%;
}

/* Component styles. */
.promise-strip {
    border-bottom: 1px solid var(--line);
}

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

.promise-item {
    position: relative;
    padding: 36px 42px;
    border-left: 1px solid var(--line);
    transition: color 300ms ease, background 300ms ease;
}

.promise-item:last-child {
    border-right: 1px solid var(--line);
}

.promise-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: var(--gold-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 450ms var(--ease-out);
    content: "";
}

.promise-item:hover {
    color: var(--white);
    background: var(--navy-900);
}

.promise-item:hover::before {
    transform: scaleX(1);
}

.promise-item__number {
    display: block;
    margin-bottom: 20px;
    color: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.promise-item h2 {
    margin-bottom: 8px;
    font-size: 1.65rem;
}

.promise-item p {
    margin-bottom: 0;
    color: var(--ink-500);
    font-size: 0.94rem;
    transition: color 300ms ease;
}

.promise-item:hover p {
    color: rgba(255, 255, 255, 0.7);
}

/* Component styles. */
.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: clamp(54px, 8vw, 110px);
    align-items: center;
}

.split-layout--reverse .split-media {
    /* Image presentation styles. */
    order: 2;
}

.split-copy h2 {
    margin-bottom: 26px;
    color: var(--navy-900);
    font-size: clamp(2.3rem, 4vw, 4.3rem);
    letter-spacing: -0.04em;
}

.split-copy p {
    color: var(--ink-700);
}

.split-copy p + p {
    margin-top: 16px;
}

.split-media {
    position: relative;
}

.split-media::before {
    position: absolute;
    z-index: -1;
    top: -22px;
    right: -22px;
    width: 58%;
    height: 58%;
    border: 1px solid var(--gold-500);
    content: "";
}

.split-media img {
    aspect-ratio: 4 / 4.25;
    object-fit: cover;
}

.stat-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 36px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.stat strong {
    display: block;
    color: var(--navy-900);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
}

.stat span {
    color: var(--ink-500);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Product card styles. */
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.media-card {
    /* Pointer hover and focus interaction styles. */
    position: relative;
    overflow: hidden;
    background: var(--navy-950);
    box-shadow: var(--shadow-sm);
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transform-style: preserve-3d;
    transition: transform 450ms var(--ease-out), box-shadow 450ms ease;
}

.media-card::after {
    position: absolute;
    inset: -45%;
    z-index: 2;
    background: linear-gradient(110deg, transparent 38%, rgba(255, 255, 255, 0.27) 49%, transparent 60%);
    transform: translateX(-95%) rotate(8deg);
    transition: transform 900ms var(--ease-out);
    pointer-events: none;
    content: "";
}

.media-card:hover {
    box-shadow: var(--shadow-lg);
}

.media-card:hover::after {
    transform: translateX(95%) rotate(8deg);
}

.media-card img {
    aspect-ratio: 4 / 4.6;
    object-fit: cover;
    transition: transform 1s var(--ease-out), filter 600ms ease;
}

.media-card:hover img {
    /* Image lightbox styles. */
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.075);
    animation: imageBreathe 2.4s ease-in-out infinite alternate;
}

.media-card__overlay {
    position: absolute;
    z-index: 3;
    inset: auto 0 0;
    padding: 70px 28px 26px;
    color: var(--white);
    background: linear-gradient(transparent, rgba(4, 15, 27, 0.92));
    transform: translateZ(22px);
}

.media-card__index {
    display: block;
    margin-bottom: 8px;
    color: var(--gold-400);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.media-card h3 {
    margin-bottom: 7px;
    font-size: 2rem;
}

.media-card p {
    max-width: 32ch;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Card component styles. */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.process-step {
    position: relative;
    min-height: 270px;
    padding: 36px 38px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 350ms ease, transform 350ms var(--ease-out);
}

.process-step:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.process-step:hover {
    z-index: 1;
    background: var(--navy-800);
    transform: translateY(-10px);
}

.process-step__number {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 50px;
    place-items: center;
    border: 1px solid var(--gold-500);
    border-radius: 50%;
    color: var(--gold-400);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 1.15rem;
    transition: color 350ms ease, background 350ms ease;
}

.process-step:hover .process-step__number {
    color: var(--navy-950);
    background: var(--gold-500);
}

.process-step h3 {
    margin-bottom: 12px;
    font-size: 1.75rem;
}

.process-step p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.68);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    padding: 36px;
    border: 1px solid var(--line);
    background: var(--white);
    transition: border-color 350ms ease, box-shadow 350ms ease, transform 350ms var(--ease-out);
}

.feature-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-500);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 420ms var(--ease-out);
    content: "";
}

.feature-card:hover {
    border-color: transparent;
    box-shadow: var(--shadow-lg);
    transform: translateY(-9px);
}

.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 40px;
    place-items: center;
    border: 1px solid var(--gold-500);
    color: var(--navy-900);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 1.1rem;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--navy-900);
    font-size: 1.7rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--ink-500);
}

/* Product grid and catalog layout. */
.series-nav {
    /* Floating site navigation styles. */
    position: sticky;
    z-index: 20;
    top: calc(var(--nav-height) + 26px);
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
    scrollbar-width: none;
}

.series-nav::-webkit-scrollbar {
    display: none;
}

.series-nav__inner {
    display: flex;
    width: max-content;
    min-width: min(100%, 1500px);
    justify-content: center;
    gap: clamp(24px, 3.5vw, 58px);
    margin-inline: auto;
    padding: 19px 28px;
}

.series-nav a {
    color: var(--ink-500);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 220ms ease;
}

.series-nav a:hover {
    color: var(--gold-500);
}

/* Product page styles. */
.product-catalog {
    padding: 44px 0 82px;
    background: var(--white);
}

/* Product card styles. */
.catalog-container {
    position: relative;
    width: min(1560px, calc(100% - 74px));
    margin-inline: auto;
    padding-left: 44px;
    border-left: 1px solid #cfd4d8;
}

/* Product page styles. */
.catalog-series {
    position: relative;
    padding: 58px 0 88px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: calc(var(--nav-height) + 118px);
}

.catalog-series:last-child {
    border-bottom: 0;
}

/* Component styles. */
.catalog-series::before {
    position: absolute;
    top: 73px;
    left: -53px;
    width: 17px;
    height: 17px;
    border: 4px solid var(--white);
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 1px #cfd4d8;
    content: "";
}

/* Typography styles. */
.catalog-series__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
    gap: 54px;
    align-items: end;
    margin-bottom: 38px;
}

.catalog-series__number {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.catalog-series h2 {
    margin: 0;
    color: var(--navy-950);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.15rem, 3.4vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 0.98;
    text-transform: uppercase;
}

.catalog-series__header p {
    max-width: 54ch;
    margin: 0;
    color: var(--ink-500);
    font-size: 0.96rem;
}

/* Product page styles. */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 42px clamp(18px, 2.2vw, 36px);
}

/* Product card styles. */
.catalog-card {
    width: 100%;
    min-width: 0;
    padding: 0;
    border: 0;
    color: var(--ink-900);
    background: transparent;
    cursor: zoom-in;
    text-align: left;
}

.catalog-card__media {
    position: relative;
    display: block;
    overflow: hidden;
    background: #f6f7f7;
}

/* Product page styles. */
.catalog-card__media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    padding: 10px;
    object-fit: contain;
    transition: transform 850ms var(--ease-out), filter 450ms ease;
}

/* Shared corner-radius styles. */
.catalog-card__badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: #ffffff;
    background: rgba(5, 27, 48, 0.92);
    box-shadow: 0 10px 25px rgba(5, 27, 48, 0.2);
    backdrop-filter: blur(8px);
    pointer-events: none;
}

/* Component styles. */
.catalog-card__badge-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(211, 174, 105, 0.16);
}

.catalog-card__badge > span:last-child {
    display: grid;
    gap: 1px;
}

.catalog-card__badge b,
.catalog-card__badge small {
    line-height: 1;
    text-transform: uppercase;
}

.catalog-card__badge b {
    color: var(--gold-500);
    font-size: 0.63rem;
    letter-spacing: 0.15em;
}

.catalog-card__badge small {
    color: #ffffff;
    font-size: 0.52rem;
    font-weight: 700;
    letter-spacing: 0.09em;
}

/* Button and call-to-action styles. */
.catalog-card__action {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 13px 22px;
    border: 1px solid var(--gold-500);
    color: var(--navy-950);
    background: var(--gold-500);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0;
    text-transform: uppercase;
    transform: translate(-50%, -42%);
    transition: opacity 300ms ease, transform 400ms var(--ease-out);
}

.catalog-card:hover .catalog-card__media img,
.catalog-card:focus-visible .catalog-card__media img {
    filter: brightness(0.74) saturate(1.08);
    transform: scale(1.055);
}

.catalog-card:hover .catalog-card__action,
.catalog-card:focus-visible .catalog-card__action {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Product card styles. */
.catalog-card__meta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 16px;
    min-height: 72px;
    padding: 17px 2px 0;
}

.catalog-card__meta strong {
    min-height: 2.5em;
    color: var(--navy-950);
    font-size: clamp(0.95rem, 1.15vw, 1.18rem);
    font-weight: 800;
    line-height: 1.25;
}

.catalog-card__meta small {
    flex: 0 0 auto;
    padding-top: 0.36em;
    color: var(--ink-500);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* Product page styles. */
.catalog-series__header-side {
    display: grid;
    justify-items: start;
    gap: 18px;
}

.catalog-gallery-link {
    display: inline-flex;
    width: max-content;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 12px 19px;
    border: 1px solid rgba(8, 35, 59, 0.22);
    border-radius: 999px;
    color: var(--navy-950);
    background: #ffffff;
    box-shadow: 0 13px 34px rgba(8, 35, 59, 0.06);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: color 300ms ease, background 300ms ease, border-color 300ms ease, transform 400ms var(--ease-out), box-shadow 300ms ease;
}

.catalog-gallery-link span {
    font-size: 1rem;
    transition: transform 350ms var(--ease-out);
}

.catalog-gallery-link:hover,
.catalog-gallery-link:focus-visible {
    border-color: var(--navy-950);
    color: #ffffff;
    background: var(--navy-950);
    box-shadow: 0 18px 38px rgba(8, 35, 59, 0.17);
    transform: translateY(-4px);
}

.catalog-gallery-link:hover span,
.catalog-gallery-link:focus-visible span {
    transform: translateX(6px);
}

/* Homepage hero carousel styles. */

/* Homepage hero carousel styles. */
.campaign-section {
    overflow: hidden;
}

/* Product page styles. */
.campaign-section__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    align-items: end;
    gap: 56px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.campaign-section__intro {
    display: grid;
    justify-items: start;
    gap: 22px;
}

.campaign-section__intro p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

/* Carousel controls and indicator styles. */
.campaign-carousel {
    position: relative;
    width: 100%;
}

/* Hero typography and content positioning. */
.campaign-carousel__viewport {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1916 / 820;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    background: #eee8df;
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28);
}

/* Homepage hero carousel styles. */
.campaign-slide {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.012);
    transition: opacity 900ms ease, transform 1300ms var(--ease-out), visibility 900ms ease;
}

/* Homepage hero carousel styles. */
.campaign-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* Hero typography and content positioning. */
.campaign-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #eee8df;
    transition: transform 900ms var(--ease-out), filter 400ms ease;
}

/* Homepage hero carousel styles. */
.campaign-slide.is-active:hover img,
.campaign-slide.is-active:focus-visible img {
    filter: saturate(1.04) contrast(1.02);
    transform: scale(1.008);
}

/* Homepage hero carousel styles. */
.campaign-slide::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(8, 35, 59, 0.08);
    border-radius: inherit;
    pointer-events: none;
    content: "";
}

/* Carousel controls and indicator styles. */
.campaign-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
}

/* Button and call-to-action styles. */
.campaign-carousel__arrow {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.52);
    border-radius: 50%;
    color: #ffffff;
    background: transparent;
    font-size: 1.15rem;
    cursor: pointer;
    transition: color 280ms ease, background 280ms ease, border-color 280ms ease, transform 350ms var(--ease-out);
}

.campaign-carousel__arrow:hover,
.campaign-carousel__arrow:focus-visible {
    border-color: var(--gold-500);
    color: var(--navy-950);
    background: var(--gold-500);
    transform: translateY(-3px);
}

/* Carousel controls and indicator styles. */
.campaign-carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.campaign-carousel__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
    transition: width 320ms var(--ease-out), background 280ms ease, border-color 280ms ease;
}

/* Carousel controls and indicator styles. */
.campaign-carousel__dot.is-active {
    width: 34px;
    border-color: var(--gold-500);
    background: var(--gold-500);
}

.campaign-carousel__dot:hover,
.campaign-carousel__dot:focus-visible {
    border-color: var(--gold-500);
}

/* Gallery page styles. */
.home-gallery-feature {
    overflow: hidden;
}

.home-gallery-feature__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 500px);
    align-items: end;
    gap: 56px;
    margin-bottom: 38px;
    padding-bottom: 34px;
    border-bottom: 1px solid var(--line);
}

.home-gallery-feature__intro {
    display: grid;
    justify-items: start;
    gap: 20px;
}

.home-gallery-feature__intro p {
    margin: 0;
    color: var(--ink-500);
}

.home-gallery-feature__mosaic {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 260px;
    gap: 18px;
}

.home-gallery-shot {
    --rx: 0deg;
    --ry: 0deg;
    position: relative;
    grid-column: span 5;
    overflow: hidden;
    border-radius: 20px;
    background: var(--navy-950);
    box-shadow: 0 20px 42px rgba(8, 35, 59, 0.12);
    transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry));
    transform-style: preserve-3d;
    transition: transform 420ms var(--ease-out), box-shadow 350ms ease;
}

.home-gallery-shot--lead {
    grid-column: span 7;
    grid-row: span 2;
}

.home-gallery-shot::after {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: inherit;
    pointer-events: none;
    content: "";
}

.home-gallery-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease-out), filter 450ms ease;
}

.home-gallery-shot:hover,
.home-gallery-shot:focus-visible {
    box-shadow: 0 28px 55px rgba(8, 35, 59, 0.19);
}

.home-gallery-shot:hover img,
.home-gallery-shot:focus-visible img {
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.06);
}

/* Gallery page styles. */
.series-gallery {
    padding: 22px 0 104px;
    background: #ffffff;
}

.series-gallery__container {
    width: min(1560px, calc(100% - 74px));
    margin-inline: auto;
}

.gallery-series {
    padding: 82px 0 96px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: calc(var(--nav-height) + 118px);
}

.gallery-series:last-child {
    border-bottom: 0;
}

.gallery-series__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 540px);
    align-items: end;
    gap: 56px;
    margin-bottom: 38px;
}

.gallery-series__number {
    display: block;
    margin-bottom: 10px;
    color: var(--gold-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.18em;
}

.gallery-series h2 {
    margin: 0;
    color: var(--navy-950);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    font-size: clamp(2.8rem, 5vw, 5.8rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.9;
    text-transform: uppercase;
}

.gallery-series__header p {
    margin: 0 0 14px;
    color: var(--ink-500);
}

.gallery-series__header a {
    color: var(--navy-950);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.gallery-series__header a:hover {
    color: var(--gold-500);
}

/* Component styles. */
.series-gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.gallery-card {
    position: relative;
    grid-column: span 4;
    overflow: hidden;
    padding: 0;
    border: 0;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 18px;
    cursor: zoom-in;
    text-align: left;
}

.series-gallery__grid .gallery-card:nth-child(1) {
    grid-column: span 7;
    min-height: 500px;
}

.series-gallery__grid .gallery-card:nth-child(2) {
    grid-column: span 5;
    min-height: 500px;
}

.gallery-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 1s var(--ease-out), filter 500ms ease;
}

.series-gallery__grid .gallery-card:nth-child(1) img,
.series-gallery__grid .gallery-card:nth-child(2) img {
    height: 500px;
}

.gallery-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(4, 15, 27, 0.18));
    opacity: 0.08;
    transition: opacity 400ms ease;
    content: "";
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
    /* Shared design token. */
    filter: saturate(1.12) contrast(1.03);
    transform: scale(1.075);
    animation: imageBreathe 2.4s ease-in-out infinite alternate;
}

.gallery-card:hover::after {
    opacity: 0.2;
}

/* Gallery page styles. */
.gallery-card__caption {
    display: none;
}

/* Image presentation styles. */
.gallery-card--placeholder {
    min-height: 420px;
    cursor: default;
    background:
        radial-gradient(circle at 82% 18%, rgba(211, 174, 105, 0.19), transparent 31%),
        linear-gradient(145deg, #092744, #041523);
}

.gallery-card--placeholder::before {
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(211, 174, 105, 0.32);
    border-radius: 11px;
    content: "";
}

.gallery-card--placeholder::after {
    background: linear-gradient(145deg, transparent, rgba(3, 15, 26, 0.36));
}

.gallery-card__placeholder {
    display: none;
}

/* Product page styles. */
.lightbox {
    position: fixed;
    z-index: 2000;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(3, 10, 18, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox__figure {
    position: relative;
    width: min(1200px, 100%);
    margin: 0;
    transform: scale(0.94);
    transition: transform 450ms var(--ease-out);
}

.lightbox.is-open .lightbox__figure {
    transform: scale(1);
}

.lightbox__image {
    width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
}

.lightbox__caption {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.74);
    text-align: center;
}

.lightbox__close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: var(--white);
    background: rgba(8, 23, 40, 0.72);
    cursor: pointer;
    font-size: 1.6rem;
}

/* Contact page and warehouse map styles. */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(50px, 8vw, 110px);
}

.contact-details {
    display: grid;
    align-content: start;
    gap: 26px;
}

.contact-detail {
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.contact-detail span {
    display: block;
    margin-bottom: 6px;
    color: var(--gold-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.contact-detail a,
.contact-detail strong {
    color: var(--navy-900);
    font-size: 1.08rem;
}

.contact-detail a:hover {
    color: var(--gold-500);
}

/* Contact page and warehouse map styles. */
.locations-section {
    background: #f7f8f8;
}

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

.location-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: transform 350ms var(--ease-out), box-shadow 350ms ease, border-color 350ms ease;
}

.location-card:hover {
    border-color: rgba(200, 168, 107, 0.72);
    box-shadow: 0 24px 54px rgba(8, 23, 40, 0.12);
    transform: translateY(-7px);
}

.location-card__media {
    /* Dealer Portal component styles. */
    position: relative;
    aspect-ratio: 2 / 1;
    min-height: 220px;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(200, 168, 107, 0.14), rgba(8, 23, 40, 0.04)),
        #f1f3f3;
}

.location-card__media img {
    /* Dealer Portal component styles. */
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: scale(1.01);
    transition: opacity 350ms ease, transform 650ms var(--ease-out);
}

.location-card__media.has-photo img {
    /* Image presentation styles. */
    opacity: 1;
}

.location-card:hover .location-card__media.has-photo img {
    /* Dealer Portal component styles. */
    transform: scale(1.045);
}

.location-card__placeholder {
    /* Image presentation styles. */
    position: absolute;
    inset: 0;
    display: grid;
    padding: 24px;
    place-content: center;
    place-items: center;
    color: var(--ink-500);
    text-align: center;
    transition: opacity 250ms ease;
}

.location-card__placeholder::before {
    width: 46px;
    height: 34px;
    margin-bottom: 14px;
    border: 1px solid rgba(16, 38, 61, 0.28);
    border-radius: 7px;
    background:
        linear-gradient(145deg, transparent 51%, rgba(200, 168, 107, 0.44) 52% 66%, transparent 67%),
        linear-gradient(35deg, transparent 50%, rgba(16, 38, 61, 0.16) 51% 66%, transparent 67%);
    content: "";
}

.location-card__placeholder span {
    color: var(--navy-900);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.location-card__placeholder small {
    margin-top: 7px;
    color: var(--ink-500);
    font-size: 0.72rem;
}

.location-card__media.has-photo .location-card__placeholder {
    /* Typography styles. */
    opacity: 0;
}

.location-card__body {
    /* Dealer Portal component styles. */
    display: flex;
    flex: 1;
    padding: clamp(28px, 4vw, 46px);
    flex-direction: column;
}

.location-card__state {
    display: block;
    margin-bottom: 12px;
    color: var(--gold-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.location-card h3 {
    margin-bottom: 14px;
    color: var(--navy-900);
    font-size: clamp(1.65rem, 2.7vw, 2.35rem);
}

.location-card address {
    margin-bottom: 24px;
    color: var(--ink-700);
    font-style: normal;
    line-height: 1.7;
}

.location-card__details {
    display: grid;
    gap: 12px;
    margin: 0 0 28px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.location-card__details div {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
}

.location-card__details dt {
    color: var(--ink-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.location-card__details dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
    color: var(--navy-900);
}

.location-card__details a:hover {
    color: var(--gold-500);
}

.location-card__body > .text-link {
    align-self: flex-start;
    margin-top: auto;
}

.contact-form {
    /* Responsive styles for smaller screens. */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    padding: 42px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field label {
    color: var(--navy-900);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cfd5da;
    border-radius: 0;
    color: var(--ink-900);
    background: var(--white);
    transition: border-color 220ms ease, box-shadow 220ms ease;
}

.form-field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    box-shadow: 0 0 0 3px rgba(200, 168, 107, 0.18);
}

.form-note {
    grid-column: 1 / -1;
    margin: 0;
    color: var(--ink-500);
    font-size: 0.82rem;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 34px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 26px;
    color: var(--ink-700);
}

.check-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--gold-500);
    content: "\2713";
    font-weight: 800;
}

/* Component styles. */
.cta-panel {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--navy-900);
}

.cta-panel::before {
    position: absolute;
    top: -160px;
    right: -100px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(200, 168, 107, 0.28);
    border-radius: 50%;
    animation: ringBreathe 5s ease-in-out infinite;
    content: "";
}

.cta-panel__inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    padding: 74px 0;
}

.cta-panel h2 {
    max-width: 760px;
    margin-bottom: 12px;
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    letter-spacing: -0.035em;
}

.cta-panel p {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Shared footer styles. */
.site-footer {
    color: rgba(255, 255, 255, 0.72);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, 1fr);
    gap: 54px;
    padding: 74px 0 60px;
}

.footer-brand img {
    width: auto;
    height: 62px;
    margin-bottom: 24px;
}

.footer-brand p {
    max-width: 320px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.footer-column ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-column a {
    transition: color 220ms ease, transform 220ms ease;
}

.footer-column a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

/* Motion and transition styles. */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 850ms var(--ease-out), transform 850ms var(--ease-out);
    transition-delay: var(--reveal-delay, 0ms);
}

.js [data-reveal="left"] {
    transform: translateX(-38px);
}

.js [data-reveal="right"] {
    transform: translateX(38px);
}

.js [data-reveal].is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Motion and transition styles. */
@keyframes imageBreathe {
    /* Motion and transition styles. */
    0% { transform: scale(1.055); }
    100% { transform: scale(1.09); }
}

@keyframes buttonPulse {
    /* Motion and transition styles. */
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 168, 107, 0); }
    50% { box-shadow: 0 0 0 9px rgba(200, 168, 107, 0.13); }
}

@keyframes ringBreathe {
    0%, 100% { opacity: 0.35; transform: scale(0.92); }
    50% { opacity: 0.85; transform: scale(1.06); }
}

/* Homepage hero carousel styles. */

/* Resources page and download-card styles. */
.resource-library {
    padding: clamp(82px, 9vw, 130px) 0;
    background: #f4f6f7;
}

/* Typography styles. */
.resource-library__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    align-items: end;
    gap: clamp(38px, 7vw, 96px);
    margin-bottom: 54px;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(8, 35, 59, 0.16);
}

.resource-library__intro .section-title {
    max-width: 650px;
    margin-bottom: 0;
}

.resource-library__summary {
    display: grid;
    gap: 24px;
}

.resource-library__summary p {
    margin: 0;
    color: var(--ink-500);
    font-size: 1.05rem;
}

.resource-library__count {
    display: inline-flex;
    width: max-content;
    align-items: baseline;
    gap: 12px;
    color: var(--ink-500);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.resource-library__count strong {
    color: var(--gold-500);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 2.25rem;
    font-weight: 500;
    letter-spacing: 0;
}

/* Product card styles. */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.resource-card {
    position: relative;
    display: flex;
    min-height: 390px;
    flex-direction: column;
    overflow: hidden;
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(8, 35, 59, 0.12);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 16px 38px rgba(8, 35, 59, 0.06);
    transition: border-color 300ms ease, box-shadow 400ms ease, transform 450ms var(--ease-out);
}

/* Floating site navigation styles. */
.resource-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 92px;
    height: 4px;
    background: var(--gold-500);
    transition: width 450ms var(--ease-out);
    content: "";
}

.resource-card:hover {
    border-color: rgba(8, 35, 59, 0.24);
    box-shadow: 0 28px 64px rgba(8, 35, 59, 0.13);
    transform: translateY(-8px);
}

.resource-card:hover::before {
    width: 100%;
}

.resource-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.resource-card__category,
.resource-card__format {
    color: var(--ink-500);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.resource-card__category {
    color: var(--gold-500);
}

.resource-card__number {
    color: rgba(8, 35, 59, 0.12);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.78;
}

.resource-card__content {
    display: grid;
    gap: 18px;
    margin: auto 0 34px;
    padding-top: 44px;
}

.resource-card__content h3 {
    max-width: 540px;
    margin: 0;
    color: var(--navy-950);
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    letter-spacing: -0.025em;
}

.resource-card__content p {
    max-width: 560px;
    margin: 0;
    color: var(--ink-500);
}

/* Button and call-to-action styles. */
.resource-card__link {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 19px;
    border-top: 1px solid rgba(8, 35, 59, 0.14);
    color: var(--navy-950);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.resource-card__link span {
    color: var(--gold-500);
    font-size: 1.1rem;
    transition: transform 350ms var(--ease-out);
}

.resource-card__link:hover span,
.resource-card__link:focus-visible span {
    transform: translate(5px, -2px);
}

/* Return Policy page styles. */
.resource-card__link--stretched::after {
    position: absolute;
    z-index: 20;
    inset: 0;
    content: "";
}

/* Accessibility and keyboard-focus styles. */
.resource-card:has(.resource-card__link--stretched:focus-visible) {
    outline: 3px solid var(--gold-500);
    outline-offset: 5px;
}

/* Product card styles. */
.resource-card--featured {
    display: grid;
    min-height: 440px;
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: stretch;
    gap: clamp(34px, 8vw, 110px);
    color: #ffffff;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.resource-card--featured::after {
    position: absolute;
    right: -130px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    content: "";
}

.resource-card__copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.resource-card--featured .resource-card__number {
    color: rgba(255, 255, 255, 0.14);
}

.resource-card--featured .resource-card__content h3,
.resource-card--featured .resource-card__link {
    color: #ffffff;
}

.resource-card--featured .resource-card__content p,
.resource-card--featured .resource-card__format {
    color: rgba(255, 255, 255, 0.68);
}

.resource-card--featured .resource-card__link {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Image presentation styles. */
.resource-card__documents {
    position: relative;
    z-index: 1;
    min-height: 330px;
    perspective: 1000px;
}

.resource-card__document {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    width: min(250px, 70%);
    aspect-ratio: 0.72;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 26px;
    border-radius: 8px;
    background: #f7f5ef;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
    transform-origin: center;
}

.resource-card__document--back {
    background: var(--gold-500);
    transform: translate(-35%, -50%) rotate(9deg);
}

.resource-card__document--middle {
    background: #d8dde0;
    transform: translate(-63%, -49%) rotate(-7deg);
}

.resource-card__document--front {
    color: var(--navy-950);
    transform: translate(-50%, -50%) rotate(0deg);
    transition: transform 600ms var(--ease-out);
}

.resource-card--featured:hover .resource-card__document--front {
    transform: translate(-50%, -54%) rotate(-1deg);
}

.resource-card__document small,
.resource-card__document i {
    font-size: 0.55rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.resource-card__document strong {
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.05;
}

/* Resources page and download-card styles. */
.resource-card--policy {
    background: #e9eef1;
}

/* Contact page and warehouse map styles. */
.resource-contact {
    background: #ffffff;
}

.resource-contact__panel {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.7fr);
    align-items: end;
    gap: clamp(42px, 8vw, 110px);
    overflow: hidden;
    padding: clamp(38px, 6vw, 72px);
    border-radius: 28px;
    color: #ffffff;
    background: var(--navy-900);
    box-shadow: var(--shadow-lg);
}

.resource-contact__panel .section-title {
    max-width: 680px;
    margin-bottom: 0;
    color: #ffffff;
}

.resource-contact__action {
    display: grid;
    justify-items: start;
    gap: 26px;
}

.resource-contact__action p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.35; transform: scaleY(0.55); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Component visibility states. */
@media (max-width: 1280px) {
    .catalog-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Component styles. */
@media (max-width: 1080px) {
    :root {
        --nav-height: 76px;
    }

    .site-header {
        padding: 12px 14px 0;
    }

    .nav-shell {
        width: 100%;
        min-height: var(--nav-height);
        padding: 8px 16px 8px 20px;
        border-radius: 28px;
    }

    .brand img {
        height: 46px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: fixed;
        z-index: 999;
        top: calc(var(--nav-height) + 22px);
        right: 0;
        bottom: 0;
        width: min(420px, 92vw);
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
        padding: 22px 28px 40px;
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius: 28px 0 0 28px;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(22px);
        box-shadow: -20px 30px 50px rgba(8, 23, 40, 0.12);
        transform: translateX(105%);
        transition: transform 360ms var(--ease-out);
    }

    .site-nav.is-open {
        transform: translateX(0);
    }

    .site-nav > a:not(.button) {
        padding: 17px 4px;
        border-bottom: 1px solid var(--line);
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    .site-nav .button {
        margin-top: 22px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    /* Typography styles. */
    .catalog-series__header {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-gallery-feature__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    /* Component visibility states. */
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px 22px;
    }

    /* Gallery page styles. */
    .gallery-series__header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .series-gallery__grid .gallery-card {
        grid-column: span 6;
        min-height: 420px;
    }

    .series-gallery__grid .gallery-card:nth-child(1),
    .series-gallery__grid .gallery-card:nth-child(2) {
        min-height: 420px;
    }

    .series-gallery__grid .gallery-card img,
    .series-gallery__grid .gallery-card:nth-child(1) img,
    .series-gallery__grid .gallery-card:nth-child(2) img {
        height: 420px;
    }

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

    .footer-column:last-child {
        grid-column: 2;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 760px) {
    .container,
    .hero__content,
    .page-hero__content {
        width: min(100% - 34px, var(--site-width));
    }

    .section {
        padding: 76px 0;
    }

    .section--compact {
        padding: 58px 0;
    }

    .hero {
        min-height: 100vh;
        min-height: 100svh;
        margin: 0 9px 9px;
        border-radius: 25px;
    }

    .hero__slide img {
        object-position: 57% center;
    }

    .hero__slide--campaign img {
        /* Responsive styles for smaller screens. */
        object-position: 68% center;
    }

    .hero__content {
        padding-top: 150px;
        padding-bottom: 110px;
    }

    .hero .display-title {
        font-size: clamp(3rem, 14vw, 5.3rem);
    }

    .hero__content--campaign .display-title {
        font-size: clamp(3rem, 13vw, 5rem);
    }

    .hero__scroll {
        display: none;
    }

    .page-hero {
        min-height: 520px;
    }

    .page-hero__content {
        padding-top: 150px;
    }

    .promise-grid,
    .process-grid,
    .card-grid,
    .feature-grid,
    .split-layout,
    .contact-layout,
    .contact-form,
    .cta-panel__inner,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .location-card__media {
        min-height: 200px;
    }

    .promise-item,
    .promise-item:last-child {
        padding: 30px 20px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .split-layout--reverse .split-media {
        order: 0;
    }

    .split-media::before {
        top: -12px;
        right: -12px;
    }

    .stat-row {
        gap: 10px;
    }

    .stat strong {
        font-size: 1.55rem;
    }

    .stat span {
        font-size: 0.65rem;
    }

    .media-card img {
        aspect-ratio: 4 / 4.2;
    }

    .process-step,
    .process-step:first-child {
        min-height: 230px;
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .series-nav__inner {
        justify-content: flex-start;
    }

    /* Responsive styles for smaller screens. */
    .catalog-container {
        width: calc(100% - 32px);
        padding-left: 27px;
    }

    .catalog-series {
        padding: 48px 0 68px;
    }

    .catalog-series::before {
        top: 62px;
        left: -36px;
        width: 16px;
        height: 16px;
    }

    .catalog-series__header {
        margin-bottom: 28px;
    }

    /* Responsive product layout styles. */
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 30px 16px;
    }

    .catalog-card__meta {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .catalog-card__meta small {
        padding-top: 0;
    }

    /* Responsive gallery layout styles. */
    .series-gallery__container {
        width: calc(100% - 32px);
    }

    .home-gallery-feature__mosaic {
        grid-auto-rows: 300px;
    }

    .home-gallery-shot,
    .home-gallery-shot--lead {
        grid-column: span 12;
        grid-row: span 1;
    }

    .gallery-series {
        padding: 62px 0 72px;
    }

    .gallery-series__header {
        margin-bottom: 26px;
    }

    .series-gallery__grid .gallery-card {
        grid-column: span 12;
        min-height: 390px;
    }

    .series-gallery__grid .gallery-card:nth-child(1),
    .series-gallery__grid .gallery-card:nth-child(2) {
        min-height: 390px;
    }

    .series-gallery__grid .gallery-card img,
    .series-gallery__grid .gallery-card:nth-child(1) img,
    .series-gallery__grid .gallery-card:nth-child(2) img {
        height: 390px;
    }

    .gallery-card--placeholder {
        min-height: 390px;
    }

    .gallery-card__placeholder {
        padding: 30px;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .check-list {
        grid-template-columns: 1fr;
    }

    .cta-panel__inner {
        gap: 28px;
    }

    .cta-panel__inner .button {
        justify-self: start;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }
}

/* Gallery card styles. */

@media (min-width: 1121px) {
    /* Component styles. */
    .series-gallery__grid,
    .gallery-series__extra-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 18px;
    }

    /* Component styles. */
    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card,
    .gallery-series__extra-grid .gallery-more-card,
    .gallery-series__extra-grid .gallery-more-card:nth-child(3),
    .gallery-series__extra-grid .gallery-more-card:nth-child(4),
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: span 4 !important;
        grid-row: auto !important;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    /* Image presentation styles. */
    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(1),
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(1),
    .gallery-series__extra-grid .gallery-more-card:nth-child(1) {
        grid-column: span 7 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }

    /* Component styles. */
    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(2),
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(2),
    .gallery-series__extra-grid .gallery-more-card:nth-child(2) {
        grid-column: span 5 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }

    /* Component styles. */
    .series-gallery__grid .gallery-card:nth-child(5),
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: span 4 !important;
        width: 100%;
        justify-self: stretch;
    }
}

/* Card component styles. */
.series-gallery__grid .gallery-card img,
.series-gallery__grid .gallery-card:nth-child(1) img,
.series-gallery__grid .gallery-card:nth-child(2) img,
.gallery-series__extra-grid .gallery-more-card img {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #f4f2ed;
    object-fit: cover;
    object-position: center;
}

/* Image lightbox styles. */
.series-gallery__grid .gallery-card:hover img,
.series-gallery__grid .gallery-card:focus-visible img,
.gallery-series__extra-grid .gallery-more-card:hover img,
.gallery-series__extra-grid .gallery-more-card:focus-visible img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.04);
    animation: none;
}

/* Component styles. */

.footer-location--coming-soon em {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid rgba(215, 178, 105, 0.55);
    border-radius: 999px;
    color: #e4c47f;
    font-size: 0.69rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-card--coming-soon {
    grid-column: 1 / -1;
    width: min(720px, 100%);
    justify-self: center;
    border-color: rgba(201, 160, 82, 0.52);
}

.location-card__media--poster {
    min-height: 0;
    aspect-ratio: 1920 / 820;
    background: #f4efe7;
}

.location-card__media--poster img {
    padding: 10px;
    object-fit: contain;
}

.page-hero--gallery .page-hero__content,
.page-hero--gallery .page-hero__content h1 {
    color: #ffffff;
    text-shadow: 0 3px 24px rgba(3, 18, 31, 0.58);
}

.page-hero--gallery .page-hero__content .eyebrow {
    color: #efd28f;
}

.page-hero--gallery .page-hero__content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1080px) {
    .site-nav {
        max-height: 100dvh;
        padding-bottom: calc(42px + env(safe-area-inset-bottom));
        overscroll-behavior: contain;
    }

    .site-nav .dealer-menu,
    .site-nav .dealer-menu__panel {
        flex: 0 0 auto;
    }

    .site-nav .dealer-menu__panel {
        overflow: visible;
    }
}

@media (max-width: 700px) {
    .hero.is-poster-active {
        height: clamp(280px, calc((100vw - 28px) * 0.427 + 92px), 390px);
        min-height: clamp(280px, calc((100vw - 28px) * 0.427 + 92px), 390px);
    }

    .hero.is-poster-active .hero__slides {
        bottom: 68px;
    }

    .hero.is-poster-active .hero__slide--poster img,
    .hero.is-poster-active .hero__slide--poster.is-active img {
        width: 100%;
        height: 100%;
        padding: 6px;
        object-fit: contain;
    }

    .hero.is-poster-active .hero-carousel {
        bottom: 14px;
    }

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

    .location-card--coming-soon {
        grid-column: auto;
        width: 100%;
    }

    .location-card__details div {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .location-card__details dd,
    .location-card__details a {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* Responsive styles for smaller screens. */

/* Component styles. */
.split-media--warehouse img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center 56%;
}

/* Return Policy page styles. */
.policy-contact-grid {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.policy-contact-grid > div {
    display: grid;
    grid-template-columns: minmax(140px, 180px) minmax(0, 1fr);
    gap: 24px;
    align-items: baseline;
}

.policy-contact-grid a {
    min-width: 0;
    overflow-wrap: anywhere;
}

/* Gallery page styles. */
.cta-panel p {
    color: var(--ink-600);
}

/* Image lightbox styles. */
@media (min-width: 821px) {
    .hero__slide--g-series {
        background: #342b25;
    }

    .hero__slide--g2 {
        background: #e9e4dd;
    }

    .hero__slide--g-series img,
    .hero__slide--g-series.is-active img,
    .hero__slide--g2 img,
    .hero__slide--g2.is-active img {
        object-fit: contain;
        object-position: center;
        transform: none;
    }
}

@media (max-width: 820px) {
    /* Responsive styles for smaller screens. */
    .hero__content--responsive-campaign.hero__content--mobile-middle {
        padding-top: calc(var(--nav-height) + 72px);
        padding-bottom: 112px;
        justify-content: center;
    }

    /* Responsive styles for smaller screens. */
    .hero__content--responsive-campaign.hero__content--mobile-bottom {
        padding-top: calc(var(--nav-height) + 64px);
        padding-bottom: 116px;
        justify-content: flex-end;
    }

    .hero__slide--g2.hero__slide--light-copy::before {
        background: linear-gradient(
            0deg,
            rgba(250, 248, 243, 0.98) 0%,
            rgba(250, 248, 243, 0.9) 30%,
            rgba(250, 248, 243, 0.42) 52%,
            transparent 72%
        );
    }
}

@media (max-width: 760px) {
    /* Responsive homepage carousel and hero styles. */
    .page-hero--contact {
        min-height: clamp(640px, 105vw, 800px);
        place-items: start;
        background: #f4efe7;
    }

    .page-hero--contact .page-hero__media {
        background-color: #f4efe7;
        background-position: center bottom;
        background-repeat: no-repeat;
        background-size: 100% auto;
        transform: none;
    }

    .page-hero--contact:hover .page-hero__media {
        transform: none;
    }

    .page-hero--contact .page-hero__media::after {
        background: linear-gradient(
            180deg,
            rgba(8, 23, 40, 0.96) 0%,
            rgba(8, 23, 40, 0.86) 31%,
            rgba(8, 23, 40, 0.22) 57%,
            transparent 73%
        );
    }

    .page-hero--contact .page-hero__content--contact-copy {
        padding-top: calc(var(--nav-height) + 70px);
        padding-bottom: 300px;
    }

    .policy-contact-grid > div {
        grid-template-columns: minmax(105px, 0.42fr) minmax(0, 1fr);
        gap: 16px;
    }
}

@media (max-width: 390px) {
    .hero__content--responsive-campaign.hero__content--mobile-middle {
        padding-top: calc(var(--nav-height) + 52px);
    }

    .hero__content--responsive-campaign.hero__content--mobile-bottom {
        padding-bottom: 104px;
    }
}

/* Responsive homepage carousel and hero styles. */

/* Homepage hero carousel styles. */
.hero__slide--responsive-campaign {
    inset: 0;
    background: #28231f;
}

.hero__slide--responsive-campaign picture {
    position: absolute;
    inset: 0;
    display: block;
}

.hero__slide--responsive-campaign img,
.hero__slide--responsive-campaign.is-active img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.96) contrast(1.025);
    transform: scale(1.01);
}

.hero__slide--responsive-campaign.is-active img {
    transform: scale(1.045);
}

/* Component styles. */
.hero__slide--responsive-campaign::before {
    display: block;
    background: linear-gradient(
        90deg,
        rgba(25, 22, 19, 0.92) 0%,
        rgba(25, 22, 19, 0.76) 28%,
        rgba(25, 22, 19, 0.32) 50%,
        rgba(25, 22, 19, 0.04) 72%,
        transparent 100%
    );
}

/* Typography styles. */
.hero__slide--responsive-campaign.hero__slide--light-copy::before {
    background: linear-gradient(
        90deg,
        rgba(250, 248, 243, 0.97) 0%,
        rgba(250, 248, 243, 0.90) 28%,
        rgba(250, 248, 243, 0.48) 48%,
        rgba(250, 248, 243, 0.06) 70%,
        transparent 100%
    );
}

.hero__slide--responsive-campaign::after {
    display: block;
    background: linear-gradient(0deg, rgba(8, 23, 40, 0.5) 0%, transparent 36%);
}

.hero__content--responsive-campaign {
    padding-top: 175px;
    padding-bottom: 112px;
    justify-content: center;
}

.hero__content--responsive-campaign .eyebrow {
    margin-bottom: 18px;
    color: #e0bb6a;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero__content--responsive-campaign .display-title {
    max-width: 650px;
    color: #ffffff;
    font-size: clamp(3.7rem, 5vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 3px 26px rgba(0, 0, 0, 0.22);
}

.hero__content--responsive-campaign p {
    max-width: 520px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(1rem, 1.25vw, 1.18rem);
    line-height: 1.55;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero__content--responsive-campaign .button-row {
    margin-top: 28px;
}

.hero__content--responsive-campaign .button {
    min-height: 56px;
    box-shadow: 0 14px 34px rgba(8, 23, 40, 0.2);
}

.hero__content--responsive-campaign.hero__content--light-copy,
.hero__content--responsive-campaign.hero__content--light-copy .display-title {
    color: var(--navy-900);
    text-shadow: none;
}

.hero__content--responsive-campaign.hero__content--light-copy .eyebrow {
    color: #9d742c;
    text-shadow: none;
}

.hero__content--responsive-campaign.hero__content--light-copy p {
    color: rgba(16, 43, 68, 0.82);
    text-shadow: none;
}

.hero__campaign-address {
    font-style: normal;
}

@media (max-width: 820px) {
    /* Responsive homepage carousel and hero styles. */
    .hero__slide--responsive-campaign img,
    .hero__slide--responsive-campaign.is-active img {
        object-position: center center;
        transform: scale(1.005);
    }

    .hero__slide--responsive-campaign.is-active img {
        transform: scale(1.025);
    }

    /* Carousel controls and indicator styles. */
    .hero__slide--responsive-campaign::before {
        background: linear-gradient(
            0deg,
            rgba(22, 20, 18, 0.96) 0%,
            rgba(22, 20, 18, 0.78) 35%,
            rgba(22, 20, 18, 0.28) 60%,
            transparent 82%
        );
    }

    /* Floating site navigation styles. */
    .hero__slide--g-series::before {
        background: linear-gradient(
            180deg,
            rgba(25, 21, 18, 0.92) 0%,
            rgba(25, 21, 18, 0.72) 32%,
            rgba(25, 21, 18, 0.2) 57%,
            transparent 76%
        );
    }

    /* Image presentation styles. */
    .hero__slide--responsive-campaign.hero__slide--light-copy::before {
        background: linear-gradient(
            180deg,
            rgba(250, 248, 243, 0.98) 0%,
            rgba(250, 248, 243, 0.88) 29%,
            rgba(250, 248, 243, 0.36) 52%,
            transparent 72%
        );
    }

    .hero__slide--responsive-campaign::after {
        background: linear-gradient(0deg, rgba(8, 23, 40, 0.7) 0%, transparent 22%);
    }

    .hero__content--responsive-campaign {
        width: min(100% - 38px, var(--site-width));
        padding-top: calc(var(--nav-height) + 64px);
        padding-bottom: 116px;
        justify-content: flex-end;
    }

    .hero__content--responsive-campaign.hero__content--mobile-top {
        padding-top: calc(var(--nav-height) + 72px);
        padding-bottom: 112px;
        justify-content: flex-start;
    }

    .hero__content--responsive-campaign .eyebrow {
        margin-bottom: 14px;
        font-size: 0.74rem;
        line-height: 1.35;
        letter-spacing: 0.15em;
    }

    .hero__content--responsive-campaign .display-title {
        max-width: 100%;
        font-size: clamp(2.65rem, 12.2vw, 4rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
        text-wrap: pretty;
    }

    .hero__content--responsive-campaign p {
        max-width: 100%;
        margin-top: 15px;
        font-size: 0.98rem;
        line-height: 1.5;
    }

    .hero__content--responsive-campaign .button-row {
        display: flex;
        width: auto;
        margin-top: 21px;
    }

    .hero__content--responsive-campaign .button {
        width: auto;
        min-width: 154px;
        min-height: 54px;
        padding-inline: 24px;
        justify-content: center;
    }

    /* Button and call-to-action styles. */
    .hero-carousel {
        bottom: max(22px, env(safe-area-inset-bottom));
        gap: 9px;
    }

    .hero-carousel__dots {
        gap: 5px;
    }

    .hero-carousel__dot {
        width: 7px;
        height: 7px;
    }

    .hero-carousel__dot.is-active {
        width: 22px;
    }

    .hero-carousel__arrow {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 390px) {
    .hero__content--responsive-campaign {
        width: calc(100% - 30px);
        padding-bottom: 104px;
    }

    .hero__content--responsive-campaign.hero__content--mobile-top {
        padding-top: calc(var(--nav-height) + 57px);
    }

    .hero__content--responsive-campaign .display-title {
        font-size: clamp(2.35rem, 11.6vw, 3.15rem);
    }

    .hero__content--responsive-campaign p {
        font-size: 0.92rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__slide--responsive-campaign img,
    .hero__slide--responsive-campaign.is-active img {
        transform: none;
    }
}

/* Homepage hero carousel styles. */

/* Contact page and warehouse map styles. */
@media (min-width: 761px) {
    .page-hero--contact {
        min-height: clamp(650px, 56.28vw, 941px);
        background: #f4efe7;
    }

    .page-hero--contact .page-hero__media {
        background-color: #f4efe7;
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        transform: none;
    }

    .page-hero--contact:hover .page-hero__media {
        transform: none;
    }

    .page-hero--contact .page-hero__media::after {
        display: none;
    }

    /* Contact page and warehouse map styles. */
    .page-hero--contact .page-hero__content--contact-copy {
        position: absolute;
        width: 1px;
        height: 1px;
        margin: -1px;
        padding: 0;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }
}

@media (max-width: 760px) {
    /* Responsive Contact map styles. */
    .page-hero--contact .page-hero__media {
        background-position: 66% center;
        background-size: cover;
    }
}

/* Responsive styles for smaller screens. */

/* Shared footer styles. */
.footer-location--coming-soon em {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid rgba(215, 178, 105, 0.55);
    border-radius: 999px;
    color: #e4c47f;
    font-size: 0.69rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Dealer Portal component styles. */
.location-card--coming-soon {
    grid-column: 1 / -1;
    width: min(720px, 100%);
    justify-self: center;
    border-color: rgba(201, 160, 82, 0.52);
}

/* Homepage hero carousel styles. */
.location-card__media--poster {
    min-height: 0;
    aspect-ratio: 1920 / 820;
    background: #f4efe7;
}

.location-card__media--poster img {
    padding: 10px;
    object-fit: contain;
}

/* Floating site navigation styles. */
.page-hero--gallery .page-hero__content,
.page-hero--gallery .page-hero__content h1 {
    color: #ffffff;
    text-shadow: 0 3px 24px rgba(3, 18, 31, 0.58);
}

.page-hero--gallery .page-hero__content .eyebrow {
    color: #efd28f;
}

.page-hero--gallery .page-hero__content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive mobile navigation styles. */
@media (max-width: 1080px) {
    .site-nav {
        max-height: 100dvh;
        padding-bottom: calc(42px + env(safe-area-inset-bottom));
        overscroll-behavior: contain;
    }

    .site-nav .dealer-menu,
    .site-nav .dealer-menu__panel {
        flex: 0 0 auto;
    }

    .site-nav .dealer-menu__panel {
        overflow: visible;
    }
}

@media (max-width: 700px) {
    /* Responsive homepage carousel and hero styles. */
    .hero.is-poster-active {
        height: clamp(280px, calc((100vw - 28px) * 0.427 + 92px), 390px);
        min-height: clamp(280px, calc((100vw - 28px) * 0.427 + 92px), 390px);
    }

    /* Carousel controls and indicator styles. */
    .hero.is-poster-active .hero__slides {
        bottom: 68px;
    }

    .hero.is-poster-active .hero__slide--poster img {
        width: 100%;
        height: 100%;
        padding: 6px;
        object-fit: contain;
    }

    .hero.is-poster-active .hero-carousel {
        bottom: 14px;
    }

    /* Responsive Contact map styles. */
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card--coming-soon {
        grid-column: auto;
        width: 100%;
    }

    .location-card__details div {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .location-card__details dd,
    .location-card__details a {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 1080px) {
    /* Dealer Portal component styles. */
    .site-nav .dealer-menu__portal-link {
        flex: 1 1 auto;
        width: auto;
    }

    /* Responsive mobile navigation styles. */
    .site-nav .dealer-menu__trigger {
        flex: 0 0 58px;
        width: 58px;
        min-width: 58px;
        margin-top: 0;
    }
}

/* Dealer Portal location menu styles. */

/* Button and call-to-action styles. */
.dealer-menu.is-active .dealer-menu__button {
    box-shadow: 0 0 0 2px var(--gold-500), 0 12px 28px rgba(8, 23, 40, 0.16);
}

.dealer-menu.is-active .dealer-menu__trigger {
    box-shadow: none;
}

/* Button and call-to-action styles. */
.dealer-link-placeholder,
.dealer-link-placeholder:hover {
    cursor: not-allowed;
    opacity: 0.58;
    transform: none;
}

/* Responsive mobile navigation styles. */
@media (max-width: 1080px) {
    .site-nav .dealer-menu__button {
        display: flex;
        width: 100%;
    }

    .site-nav .dealer-menu__portal-link {
        flex: 1 1 auto;
        justify-content: center;
    }

    .site-nav .dealer-menu__trigger {
        width: 52px;
        flex: 0 0 52px;
        margin-top: 0;
    }
}

/* Responsive mobile navigation styles. */

/* Responsive styles for smaller screens. */
.mobile-nav__header,
.mobile-nav__label,
.mobile-nav-backdrop {
    display: none;
}

@media (max-width: 1080px) {
    /* Responsive mobile navigation styles. */
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Responsive mobile navigation styles. */
    body.nav-open {
        overflow: hidden;
        touch-action: none;
    }

    /* Button and call-to-action styles. */
    .site-header {
        z-index: 1200;
    }

    .nav-shell {
        position: relative;
        overflow: visible;
    }

    /* Button and call-to-action styles. */
    .nav-toggle {
        position: relative;
        z-index: 4;
        display: inline-flex;
        flex: 0 0 46px;
        border-color: rgba(8, 35, 59, 0.16);
        border-radius: 50%;
        box-shadow: 0 8px 20px rgba(8, 23, 40, 0.08);
    }

    /* Floating site navigation styles. */
    .mobile-nav-backdrop {
        position: fixed;
        z-index: 1180;
        inset: 0;
        display: block;
        background: rgba(7, 16, 25, 0.56);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
        transition: opacity 300ms ease, visibility 0s linear 300ms;
    }

    .mobile-nav-backdrop.is-visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition-delay: 0s;
    }

    /* Floating site navigation styles. */
    .site-nav {
        position: fixed;
        z-index: 1210;
        top: 0;
        right: auto;
        bottom: 0;
        left: 0;
        display: flex;
        width: min(88vw, 390px);
        max-width: calc(100vw - 44px);
        height: 100vh;
        height: 100dvh;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 0 26px 36px;
        border: 0;
        border-radius: 0 28px 28px 0;
        color: var(--navy-950);
        background: rgba(255, 255, 255, 0.985);
        box-shadow: 24px 0 70px rgba(3, 16, 28, 0.24);
        opacity: 1;
        visibility: hidden;
        pointer-events: none;
        overscroll-behavior: contain;
        transform: translateX(-105%);
        -webkit-overflow-scrolling: touch;
        transition: transform 380ms var(--ease-out), visibility 0s linear 380ms;
    }

    .site-nav.is-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
        transition-delay: 0s;
    }

    /* Floating site navigation styles. */
    .mobile-nav__header {
        position: sticky;
        z-index: 3;
        top: 0;
        display: flex;
        min-height: 104px;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        margin: 0 -26px 8px;
        padding: max(18px, env(safe-area-inset-top)) 26px 16px;
        border-bottom: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .mobile-nav__brand {
        display: inline-flex;
        align-items: center;
    }

    .mobile-nav__brand img {
        width: auto;
        height: 47px;
        object-fit: contain;
    }

    /* Button and call-to-action styles. */
    .mobile-nav__close {
        position: relative;
        display: inline-flex;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        align-items: center;
        justify-content: center;
        padding: 0;
        border: 1px solid rgba(8, 35, 59, 0.14);
        border-radius: 50%;
        color: var(--navy-950);
        background: #f5f4f1;
        cursor: pointer;
    }

    .mobile-nav__close::before,
    .mobile-nav__close::after {
        position: absolute;
        width: 21px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        content: "";
    }

    .mobile-nav__close::before {
        transform: rotate(45deg);
    }

    .mobile-nav__close::after {
        transform: rotate(-45deg);
    }

    .mobile-nav__close span {
        display: none;
    }

    .mobile-nav__label {
        display: block;
        margin: 16px 0 7px;
        color: var(--gold-600);
        font-size: 0.68rem;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    /* Responsive styles for smaller screens. */
    .site-nav > a:not(.button) {
        display: flex;
        width: 100%;
        min-height: 62px;
        align-items: center;
        padding: 17px 4px;
        border-bottom: 1px solid var(--line);
        color: var(--navy-950);
        font-size: 1.08rem;
        font-weight: 650;
        letter-spacing: 0.01em;
        line-height: 1.3;
        text-transform: none;
    }

    .site-nav > a:not(.button).is-active {
        color: var(--gold-700);
    }

    .site-nav > a:not(.button)::after {
        display: none;
    }

    /* Dealer Portal location menu styles. */
    .site-nav .dealer-menu {
        width: 100%;
        margin-top: 24px;
        padding-top: 4px;
    }

    .site-nav .dealer-menu__button {
        display: flex;
        width: 100%;
        min-height: 58px;
        border-radius: 17px;
    }

    .site-nav .dealer-menu__portal-link {
        flex: 1 1 auto;
        justify-content: flex-start;
        padding-left: 20px;
        font-size: 0.76rem;
    }

    .site-nav .dealer-menu__trigger {
        width: 58px;
        min-height: 56px;
        flex: 0 0 58px;
    }

    .site-nav .dealer-menu__panel {
        max-width: 100%;
        background: #f5f4f1;
    }

    .site-nav .dealer-menu__location-trigger,
    .site-nav .dealer-menu__submenu a {
        white-space: normal;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 480px) {
    .site-header {
        padding: 10px 10px 0;
    }

    .nav-shell {
        padding-inline: 14px;
    }

    .brand img {
        height: 41px;
    }

    .site-nav {
        width: min(90vw, 360px);
        max-width: calc(100vw - 30px);
        padding-inline: 22px;
        border-radius: 0 24px 24px 0;
    }

    .mobile-nav__header {
        margin-inline: -22px;
        padding-inline: 22px;
    }
}

/* Motion and transition styles. */
@media (prefers-reduced-motion: reduce) {
    .site-nav,
    .mobile-nav-backdrop {
        transition-duration: 0.01ms !important;
    }
}

/* Image presentation styles. */

/* Image presentation styles. */
.home-journey__header {
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: center;
}

.home-journey__header .section-title {
    margin: 16px auto 0;
    color: var(--white);
    font-size: clamp(2.8rem, 5vw, 5rem);
}

/* Card component styles. */
.process-grid.process-grid--visual {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

/* Card component styles. */
.process-step.process-step--visual {
    display: block;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.035);
    box-shadow: 0 24px 56px rgba(2, 12, 22, 0.22);
    text-decoration: none;
    transition:
        border-color 350ms ease,
        box-shadow 350ms ease,
        transform 350ms var(--ease-out);
}

.process-step.process-step--visual:first-child {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step.process-step--visual:hover,
.process-step.process-step--visual:focus-visible {
    border-color: rgba(200, 168, 107, 0.62);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 34px 70px rgba(2, 12, 22, 0.34);
    transform: translateY(-8px);
}

/* Motion and transition styles. */
.process-step__media {
    display: block;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--navy-800);
}

.process-step__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.03);
    transform: scale(1.002);
    transition: filter 500ms ease, transform 700ms var(--ease-out);
}

/* Image lightbox styles. */
.process-step--visual:hover .process-step__media img,
.process-step--visual:focus-visible .process-step__media img {
    filter: saturate(1.06) contrast(1.04);
    transform: scale(1.07);
    animation: imageBreathe 2.5s ease-in-out infinite alternate;
}

/* Card component styles. */
.process-step__content {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 17px;
    align-items: center;
    padding: 22px 22px 24px;
}

.process-step--visual .process-step__number {
    width: 44px;
    height: 44px;
    margin: 0;
    flex: 0 0 auto;
    font-size: 1rem;
}

.process-step__copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.process-step__copy strong {
    color: var(--white);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1;
}

.process-step__copy small {
    overflow: hidden;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.78rem;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.process-step__arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: var(--gold-400);
    transition: color 300ms ease, background 300ms ease, transform 300ms ease;
}

.process-step--visual:hover .process-step__arrow,
.process-step--visual:focus-visible .process-step__arrow {
    color: var(--navy-950);
    background: var(--gold-500);
    transform: translateX(3px);
}

/* Typography styles. */
.cta-panel.cta-panel--visual {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
    min-height: 610px;
    color: var(--navy-900);
    background: var(--warm-stone);
}

.cta-panel.cta-panel--visual::before {
    top: auto;
    right: -110px;
    bottom: -190px;
    z-index: 0;
}

.cta-panel__visual {
    position: relative;
    z-index: 1;
    min-height: 610px;
    overflow: hidden;
}

.cta-panel__visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.9) contrast(1.025);
    transform: scale(1.002);
    transition: filter 500ms ease, transform 800ms var(--ease-out);
}

/* Image lightbox styles. */
.cta-panel__visual:hover img {
    filter: saturate(1.05) contrast(1.04);
    transform: scale(1.055);
    animation: imageBreathe 2.8s ease-in-out infinite alternate;
}

.cta-panel__content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: clamp(60px, 8vw, 130px);
}

.cta-panel--visual .cta-panel__content h2 {
    max-width: 680px;
    margin: 18px 0 20px;
    color: var(--navy-900);
    font-size: clamp(2.7rem, 4.7vw, 5.2rem);
    line-height: 0.98;
}

.cta-panel--visual .cta-panel__content p {
    max-width: 500px;
    margin: 0 0 34px;
    color: var(--ink-600);
}

.cta-panel--visual .button {
    gap: 22px;
}

/* Typography styles. */
@media (max-width: 980px) {
    .process-grid.process-grid--visual {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-step.process-step--visual:last-child {
        grid-column: 1 / -1;
        width: min(100%, 520px);
        justify-self: center;
    }

    .cta-panel.cta-panel--visual {
        grid-template-columns: 1fr;
    }

    .cta-panel__visual,
    .cta-panel__visual img {
        min-height: 460px;
    }

    .cta-panel__content {
        padding: 66px max(28px, calc((100vw - 720px) / 2));
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 680px) {
    .home-journey__header {
        margin-bottom: 32px;
        text-align: left;
    }

    .process-grid.process-grid--visual {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .process-step.process-step--visual:last-child {
        grid-column: auto;
        width: 100%;
    }

    .process-step__copy small {
        white-space: normal;
    }

    .cta-panel__visual,
    .cta-panel__visual img {
        min-height: 350px;
    }

    .cta-panel__content {
        padding: 54px 24px 64px;
    }
}

/* Motion and transition styles. */
@media (prefers-reduced-motion: reduce) {
    .process-step--visual:hover .process-step__media img,
    .process-step--visual:focus-visible .process-step__media img,
    .cta-panel__visual:hover img {
        animation: none;
        transform: none;
    }
}

/* Gallery page styles. */

@media (min-width: 1121px) {
    /* Image presentation styles. */
    .gallery-series > .series-gallery__grid,
    .gallery-series > .gallery-series__extra-grid {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 18px;
    }

    /* Component styles. */
    .gallery-series > .series-gallery__grid > .gallery-card,
    .gallery-series > .gallery-series__extra-grid > .gallery-more-card,
    .gallery-series > .series-gallery__grid > .gallery-card:nth-child(3),
    .gallery-series > .series-gallery__grid > .gallery-card:nth-child(4),
    .gallery-series > .series-gallery__grid > .gallery-card:nth-child(5),
    .gallery-series > .gallery-series__extra-grid > .gallery-more-card:nth-child(3),
    .gallery-series > .gallery-series__extra-grid > .gallery-more-card:nth-child(4),
    .gallery-series > .gallery-series__extra-grid > .gallery-more-card:nth-child(5) {
        grid-column: span 4 !important;
        grid-row: auto !important;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    /* Component styles. */
    .gallery-series > .series-gallery__grid > .gallery-card:nth-child(1),
    .gallery-series > .gallery-series__extra-grid > .gallery-more-card:nth-child(1) {
        grid-column: span 7 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }

    /* Component styles. */
    .gallery-series > .series-gallery__grid > .gallery-card:nth-child(2),
    .gallery-series > .gallery-series__extra-grid > .gallery-more-card:nth-child(2) {
        grid-column: span 5 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }
}

/* Image lightbox styles. */
.gallery-series > .series-gallery__grid > .gallery-card img,
.gallery-series > .gallery-series__extra-grid > .gallery-more-card img {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #f4f2ed;
    object-fit: cover;
    object-position: center;
}

/* Responsive mobile navigation styles. */

/* Dealer Portal location menu styles. */
.dealer-menu {
    position: relative;
    z-index: 30;
    flex: 0 0 auto;
}

/* Floating site navigation styles. */
.dealer-menu::after {
    position: absolute;
    top: 100%;
    right: 0;
    width: 230px;
    height: 12px;
    content: "";
}

/* Dealer Portal component styles. */
.dealer-menu__trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    white-space: nowrap;
}

/* Floating site navigation styles. */
.dealer-menu__trigger > span {
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    transition: transform 240ms ease;
}

.dealer-menu:hover .dealer-menu__trigger > span,
.dealer-menu:focus-within .dealer-menu__trigger > span,
.dealer-menu.is-open .dealer-menu__trigger > span {
    transform: rotate(180deg);
}

/* Dealer Portal component styles. */
.dealer-menu__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 230px;
    min-height: 124px;
    overflow: hidden;
    padding: 10px;
    border: 1px solid rgba(8, 35, 59, 0.10);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 54px rgba(8, 23, 40, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: width 280ms var(--ease-out), opacity 220ms ease,
        visibility 220ms ease, transform 280ms var(--ease-out);
}

/* Responsive styles for smaller screens. */
.dealer-menu:hover .dealer-menu__panel,
.dealer-menu:focus-within .dealer-menu__panel,
.dealer-menu.is-open .dealer-menu__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Dealer Portal component styles. */
.dealer-menu__panel:has(.dealer-menu__location:hover),
.dealer-menu__panel:has(.dealer-menu__location:focus-within),
.dealer-menu__panel:has(.dealer-menu__location.is-open) {
    width: 460px;
}

/* Dealer Portal component styles. */
.dealer-menu__location {
    position: static;
    width: 210px;
}

/* Dealer Portal component styles. */
.dealer-menu__location-trigger {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border: 0;
    border-radius: 11px;
    color: var(--ink-700);
    background: transparent;
    font: inherit;
    font-size: 0.98rem;
    font-weight: 650;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease;
}

.dealer-menu__location-trigger:hover,
.dealer-menu__location-trigger:focus-visible,
.dealer-menu__location.is-open .dealer-menu__location-trigger {
    color: var(--navy-950);
    background: rgba(198, 159, 87, 0.14);
    outline: none;
}

/* Dealer Portal component styles. */
.dealer-menu__location-trigger span {
    color: var(--gold-600);
    font-size: 1.35rem;
    line-height: 1;
}

/* Dealer Portal location menu styles. */
.dealer-menu__submenu {
    position: absolute;
    top: 10px;
    right: 10px;
    display: grid;
    width: 210px;
    padding-left: 10px;
    border-left: 1px solid var(--line);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-8px);
    transition: opacity 180ms ease, visibility 180ms ease,
        transform 220ms var(--ease-out);
}

/* Dealer Portal location menu styles. */
.dealer-menu__location:hover .dealer-menu__submenu,
.dealer-menu__location:focus-within .dealer-menu__submenu,
.dealer-menu__location.is-open .dealer-menu__submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

/* Component styles. */
.dealer-menu__submenu a {
    display: flex;
    min-height: 52px;
    align-items: center;
    padding: 11px 14px;
    border-radius: 11px;
    color: var(--ink-700);
    font-size: 0.96rem;
    font-weight: 650;
    white-space: nowrap;
    transition: color 180ms ease, background 180ms ease,
        transform 180ms ease;
}

.dealer-menu__submenu a:hover,
.dealer-menu__submenu a:focus-visible {
    color: var(--navy-950);
    background: rgba(198, 159, 87, 0.14);
    outline: none;
    transform: translateX(3px);
}

/* Floating site navigation styles. */
.dealer-menu.is-active .dealer-menu__trigger {
    box-shadow: 0 0 0 2px var(--gold-500);
}

/* Responsive mobile navigation styles. */
@media (max-width: 1080px) {
    .dealer-menu {
        width: 100%;
        margin-top: 22px;
    }

    /* Responsive styles for smaller screens. */
    .dealer-menu::after {
        display: none;
    }

    .site-nav .dealer-menu__trigger {
        width: 100%;
        margin-top: 0;
    }

    .dealer-menu__panel {
        position: static;
        width: 100% !important;
        min-height: 0;
        max-height: 0;
        margin-top: 0;
        padding: 0 8px;
        border: 0;
        border-radius: 16px;
        box-shadow: none;
        transform: none;
        transition: max-height 320ms var(--ease-out), padding 220ms ease,
            opacity 180ms ease, visibility 180ms ease;
    }

    .dealer-menu:hover .dealer-menu__panel,
    .dealer-menu:focus-within .dealer-menu__panel,
    .dealer-menu.is-open .dealer-menu__panel {
        max-height: 440px;
        padding: 8px;
    }

    .dealer-menu__location {
        position: relative;
        width: 100%;
    }

    .dealer-menu__submenu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0 0 0 14px;
        border: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        transition: max-height 260ms var(--ease-out), opacity 180ms ease,
            visibility 180ms ease;
    }

    .dealer-menu__location:hover .dealer-menu__submenu,
    .dealer-menu__location:focus-within .dealer-menu__submenu,
    .dealer-menu__location.is-open .dealer-menu__submenu {
        max-height: 124px;
        opacity: 1;
        visibility: visible;
    }
}

/* Gallery grid and editorial layout. */

@media (min-width: 1121px) {
    /* Component styles. */
    .series-gallery__grid,
    .gallery-series__extra-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 18px;
    }

    /* Card component styles. */
    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card,
    .gallery-series__extra-grid .gallery-more-card,
    .gallery-series__extra-grid .gallery-more-card:nth-child(3),
    .gallery-series__extra-grid .gallery-more-card:nth-child(4),
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: span 4 !important;
        grid-row: auto !important;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    /* Component styles. */
    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(1),
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(1),
    .gallery-series__extra-grid .gallery-more-card:nth-child(1) {
        grid-column: span 7 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }

    /* Component styles. */
    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(2),
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(2),
    .gallery-series__extra-grid .gallery-more-card:nth-child(2) {
        grid-column: span 5 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }

    /* Component styles. */
    .series-gallery__grid .gallery-card:nth-child(5),
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: span 4 !important;
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 430px) {
    .display-title {
        font-size: 2.7rem;
    }

    .section-title,
    .split-copy h2 {
        font-size: 2.35rem;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .button {
        width: 100%;
    }

    /* Responsive product layout styles. */
    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card__meta {
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: baseline;
        gap: 14px;
    }

    .catalog-card__meta small {
        padding-top: 0.36em;
    }
}

/* Typography styles. */
@media (max-width: 900px) {
    .campaign-section__header {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    /* Contact page and warehouse map styles. */
    .resource-library__intro,
    .resource-contact__panel {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .resource-card--featured {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .resource-card__documents {
        min-height: 320px;
    }
}

/* Responsive homepage carousel and hero styles. */
@media (max-width: 700px) {
    .campaign-section__header {
        margin-bottom: 26px;
        padding-bottom: 24px;
    }

    .campaign-section__intro .button {
        width: 100%;
    }

    .campaign-carousel__viewport {
        border-radius: 16px;
    }

    .campaign-carousel__controls {
        gap: 16px;
        margin-top: 20px;
    }

    .campaign-carousel__arrow {
        width: 46px;
        height: 46px;
    }

    /* Responsive styles for smaller screens. */
    .resource-library {
        padding: 72px 0;
    }

    .resource-library__intro {
        margin-bottom: 34px;
        padding-bottom: 28px;
    }

    .resource-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .resource-card,
    .resource-card--featured {
        min-height: 350px;
        grid-column: auto;
        padding: 28px 22px;
        border-radius: 18px;
    }

    .resource-card__content {
        padding-top: 34px;
    }

    .resource-card__documents {
        min-height: 285px;
    }

    .resource-card__document {
        width: min(205px, 64%);
        padding: 24px 20px;
    }

    .resource-card__document strong {
        font-size: 1.55rem;
    }

    .resource-contact__panel {
        padding: 34px 24px;
        border-radius: 20px;
    }

    .resource-contact__action .button {
        width: 100%;
    }
}

/* Floating site navigation styles. */

.hero__slide--campaign img {
    object-position: center center;
    filter: saturate(0.9) contrast(1.045) sepia(0.025);
    transform: scale(1.02);
}

.hero__slide--campaign.is-active img {
    transform: scale(1.075);
}

.hero__slide--campaign::before {
    background:
        linear-gradient(
            90deg,
            rgba(24, 21, 18, 0.94) 0%,
            rgba(24, 21, 18, 0.87) 18%,
            rgba(24, 21, 18, 0.62) 34%,
            rgba(24, 21, 18, 0.24) 51%,
            rgba(24, 21, 18, 0.04) 72%,
            transparent 100%
        );
}

.hero__content--campaign {
    padding-top: 190px;
    padding-bottom: 104px;
    justify-content: center;
}

.hero__content--campaign .eyebrow {
    margin-bottom: 23px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.hero__content--campaign .display-title {
    max-width: 690px;
    color: #ffffff;
    font-size: clamp(3.75rem, 4.5vw, 5.45rem);
    line-height: 0.98;
    letter-spacing: -0.035em;
    text-wrap: balance;
    text-shadow: 0 3px 26px rgba(0, 0, 0, 0.2);
}

.hero__content--campaign p {
    max-width: 540px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.91);
    font-size: clamp(1.05rem, 1.28vw, 1.22rem);
    line-height: 1.55;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.25);
}

.hero__content--campaign .button-row {
    margin-top: 31px;
}

.hero__content--campaign .button {
    min-height: 56px;
    box-shadow: 0 14px 34px rgba(10, 25, 39, 0.2);
}

.hero__content--campaign .button--outline {
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.hero__slide--campaign::after {
    background:
        linear-gradient(0deg, rgba(24, 21, 18, 0.46), transparent 38%),
        linear-gradient(180deg, rgba(10, 16, 20, 0.08), transparent 24%);
}

@media (max-width: 980px) {
    .hero__slide--campaign img {
        object-position: 58% center;
    }

    .hero__content--campaign {
        padding-top: 170px;
        padding-bottom: 118px;
        justify-content: flex-end;
    }

    .hero__content--campaign .display-title {
        max-width: 610px;
        font-size: clamp(3.4rem, 7.6vw, 5rem);
    }
}

@media (max-width: 700px) {
    .hero__slide--campaign img {
        object-position: 66% center;
    }

    .hero__slide--campaign::before {
        background:
            linear-gradient(
                0deg,
                rgba(24, 21, 18, 0.96) 0%,
                rgba(24, 21, 18, 0.79) 48%,
                rgba(24, 21, 18, 0.18) 100%
            );
    }

    .hero__content--campaign {
        padding-top: 155px;
        padding-bottom: 126px;
    }

    .hero__content--campaign .display-title {
        max-width: 100%;
        font-size: clamp(2.9rem, 12.5vw, 4.15rem);
        line-height: 1;
    }

    .hero__content--campaign p {
        max-width: 100%;
        margin-top: 20px;
        font-size: 1rem;
    }

    .hero__content--campaign .button-row {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 330px);
        margin-top: 24px;
    }
}

/* Resources page and download-card styles. */

/* Card component styles. */
.resource-grid {
    grid-template-columns: 1fr;
    gap: clamp(22px, 3vw, 34px);
}

.resource-card.resource-card--poster {
    display: grid;
    min-height: 480px;
    grid-template-areas: "copy media";
    grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
    gap: 0;
    padding: 0;
    border-color: rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    color: #ffffff;
    background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
    box-shadow: 0 26px 65px rgba(8, 35, 59, 0.17);
}

/* Card component styles. */
.resource-card.resource-card--poster:nth-child(even) {
    grid-template-areas: "media copy";
    background: linear-gradient(225deg, #0b2035, #183b59);
}

.resource-card.resource-card--poster::before {
    z-index: 5;
    width: 120px;
}

.resource-card.resource-card--poster:hover {
    border-color: rgba(200, 168, 107, 0.55);
    box-shadow: 0 34px 82px rgba(8, 35, 59, 0.25);
    transform: translateY(-7px);
}

.resource-card.resource-card--poster:hover::before {
    width: 100%;
}

/* Card component styles. */
.resource-card--poster .resource-card__copy {
    grid-area: copy;
    min-width: 0;
    padding: clamp(38px, 5vw, 66px);
}

.resource-card--poster .resource-card__number {
    color: rgba(255, 255, 255, 0.13);
}

.resource-card--poster .resource-card__content {
    margin: auto 0 34px;
    padding-top: 42px;
}

.resource-card--poster .resource-card__content h3,
.resource-card--poster .resource-card__link {
    color: #ffffff;
}

.resource-card--poster .resource-card__content p,
.resource-card--poster .resource-card__format {
    color: rgba(255, 255, 255, 0.68);
}

.resource-card--poster .resource-card__link {
    border-color: rgba(255, 255, 255, 0.2);
}

.resource-card--poster .resource-card__link:hover,
.resource-card--poster .resource-card__link:focus-visible {
    color: var(--gold-400);
}

/* Resources page and download-card styles. */
.resource-card--poster .resource-card__link--unavailable {
    color: rgba(255, 255, 255, 0.46);
    cursor: default;
    user-select: none;
}

.resource-card--poster .resource-card__link--unavailable:hover {
    color: rgba(255, 255, 255, 0.46);
}

.resource-card--poster .resource-card__link--unavailable:hover span {
    transform: none;
}

/* Homepage hero carousel styles. */
.resource-card__media {
    position: relative;
    grid-area: media;
    min-width: 0;
    min-height: 480px;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(145deg, #173b59, #081728);
}

/* Component styles. */
.resource-card--poster:nth-child(2) .resource-card__media {
    background: linear-gradient(145deg, #735638, #172e42 70%);
}

.resource-card--poster:nth-child(3) .resource-card__media {
    background: linear-gradient(145deg, #876f54, #1a3044 68%);
}

.resource-card--poster:nth-child(4) .resource-card__media {
    background: linear-gradient(145deg, #6f7e84, #10263d 68%);
}

.resource-card--poster:nth-child(5) .resource-card__media {
    background: linear-gradient(145deg, #205472, #091a2c 72%);
}

.resource-card--poster:nth-child(6) .resource-card__media {
    background: linear-gradient(145deg, #50634e, #10263d 72%);
}

.resource-card--poster:nth-child(7) .resource-card__media {
    background: linear-gradient(145deg, #8a6542, #122a3d 72%);
}

.resource-card--poster:nth-child(8) .resource-card__media {
    background: linear-gradient(145deg, #3a6078, #081728 72%);
}

/* Product grid and catalog layout. */
.resource-card__media::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 0.42;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 50% 42%, rgba(217, 190, 136, 0.24), transparent 48%);
    background-size: 42px 42px, 42px 42px, 100% 100%;
    content: "";
}

.resource-card__media::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(140deg, transparent 20%, rgba(8, 23, 40, 0.28));
    content: "";
}

/* Motion and transition styles. */
.resource-card__media-label {
    position: absolute;
    z-index: 4;
    right: 24px;
    bottom: 22px;
    padding: 9px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(8, 23, 40, 0.55);
    backdrop-filter: blur(12px);
    font-size: 0.61rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* Component styles. */
.resource-card__visual {
    position: absolute;
    z-index: 3;
    inset: 42px;
    pointer-events: none;
}

/* Motion and transition styles. */
.resource-card__visual--catalog .resource-card__documents {
    position: absolute;
    inset: 0;
    min-height: 0;
}

.resource-card__visual--catalog .resource-card__document {
    width: min(225px, 52%);
    padding: 28px 24px;
}

.resource-card__visual--catalog .resource-card__document--front {
    animation: resourceBookFloat 5s ease-in-out infinite;
}

.resource-card__visual--catalog .resource-card__document--middle {
    animation: resourceBookMiddle 6s ease-in-out infinite;
}

.resource-card__visual--catalog .resource-card__document--back {
    animation: resourceBookBack 6.6s ease-in-out infinite;
}

/* Component styles. */
.resource-floor {
    position: absolute;
    top: 24%;
    left: 3%;
    display: grid;
    width: 58%;
    height: 52%;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 9px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    background: rgba(8, 23, 40, 0.38);
    box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28);
    transform: perspective(700px) rotateX(57deg) rotateZ(-8deg);
    animation: resourceFloorFloat 6s ease-in-out infinite;
}

.resource-floor i {
    border-radius: 6px;
    background: linear-gradient(90deg, #a98252, #d2ae77 48%, #89653e);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.resource-floor i:nth-child(even) {
    transform: translateY(10px);
}

.resource-sink {
    position: absolute;
    top: 30%;
    right: 0;
    width: 42%;
    aspect-ratio: 1.42;
    border: 7px solid #eef2f3;
    border-radius: 21px 21px 38px 38px;
    background: linear-gradient(145deg, #dce4e8 0%, #9bacb6 46%, #6f8795 100%);
    box-shadow:
        0 26px 48px rgba(0, 0, 0, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.9),
        inset 0 -8px 16px rgba(35, 56, 70, 0.22);
    transform: rotate(-1.5deg);
    animation: resourceSinkFloat 5s ease-in-out infinite;
}

/* Component styles. */
.resource-sink__bowl {
    position: absolute;
    inset: 12% 9% 10%;
    border-radius: 12px 12px 29px 29px;
    background:
        radial-gradient(circle at 50% 62%, rgba(255, 255, 255, 0.44), transparent 9%),
        linear-gradient(155deg, #b9c8d0 0%, #849aa7 48%, #647c8a 100%);
    box-shadow:
        inset 9px 10px 16px rgba(255, 255, 255, 0.34),
        inset -10px -14px 18px rgba(35, 57, 70, 0.28);
}

/* Component styles. */
.resource-sink__rim {
    position: absolute;
    z-index: 2;
    inset: 7%;
    border: 3px solid rgba(245, 249, 250, 0.72);
    border-radius: 15px 15px 34px 34px;
    box-shadow: inset 0 0 0 1px rgba(41, 65, 80, 0.22);
}

/* Component styles. */
.resource-sink__drain {
    position: absolute;
    z-index: 3;
    top: 59%;
    left: 50%;
    width: 24px;
    height: 24px;
    border: 4px solid rgba(231, 238, 241, 0.9);
    border-radius: 50%;
    background: radial-gradient(circle, #536c7a 0 26%, #aebdc5 29% 57%, #667f8e 60%);
    box-shadow: 0 2px 5px rgba(18, 40, 54, 0.3);
    transform: translate(-50%, -50%);
}

.resource-sink__drain::after {
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(239, 245, 247, 0.72);
    border-radius: 50%;
    content: "";
    animation: resourceRipple 2.4s ease-out infinite;
}

/* Floating site navigation styles. */
.resource-sink__faucet {
    position: absolute;
    z-index: 4;
    right: 12%;
    bottom: 90%;
    width: 29%;
    height: 59%;
    border: 9px solid #edf2f3;
    border-right: 0;
    border-bottom: 0;
    border-radius: 999px 0 0 0;
    filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.2));
}

.resource-sink__faucet::after {
    position: absolute;
    top: -9px;
    right: -11px;
    width: 30%;
    height: 40%;
    border-radius: 0 5px 8px 8px;
    background: linear-gradient(90deg, #eef3f4, #9fadb3);
    box-shadow: inset -2px 0 2px rgba(71, 89, 98, 0.24);
    content: "";
}

/* Component styles. */
.resource-sink__handle {
    position: absolute;
    z-index: 4;
    right: 3%;
    top: -10%;
    width: 9px;
    height: 36px;
    border-radius: 5px;
    background: linear-gradient(90deg, #eef3f4, #96a5ad);
    box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2);
    transform: rotate(15deg);
    transform-origin: bottom center;
}

/* Component styles. */
.resource-card__visual--framed {
    display: grid;
    align-content: center;
    justify-content: center;
    grid-template-rows: 105px 220px;
    gap: 8px;
}

.resource-door,
.resource-drawer {
    position: relative;
    width: 220px;
    border: 12px solid #eadfce;
    background: #d7c1a4;
    box-shadow: 0 25px 48px rgba(0, 0, 0, 0.35), inset 0 0 0 2px rgba(8, 23, 40, 0.22);
}

.resource-door i,
.resource-drawer i {
    position: absolute;
    inset: 18px;
    border: 3px solid rgba(8, 23, 40, 0.33);
    box-shadow: inset 0 0 18px rgba(8, 23, 40, 0.16);
    animation: resourceFrameGlow 3.5s ease-in-out infinite;
}

.resource-drawer i {
    inset: 13px 22px;
}

/* Component styles. */
.resource-card__visual--frameless {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.resource-slab {
    width: 29%;
    height: 68%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 9px;
    background: linear-gradient(130deg, #e7e3da, #9eaaa9);
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.32), inset -10px 0 20px rgba(8, 23, 40, 0.12);
    animation: resourceSlabSlide 5s var(--ease-out) infinite;
}

.resource-slab--two {
    height: 78%;
    animation-delay: 160ms;
}

.resource-slab--three {
    height: 62%;
    animation-delay: 320ms;
}

/* Component visibility states. */
.resource-card__visual--screen {
    display: grid;
    align-content: center;
    justify-items: center;
}

.resource-screen {
    position: relative;
    display: grid;
    width: min(330px, 88%);
    aspect-ratio: 1.48;
    align-content: end;
    gap: 11px;
    padding: 26px;
    border: 10px solid #dce2e5;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(9, 32, 53, 0.95), rgba(22, 73, 99, 0.92));
    box-shadow: 0 28px 52px rgba(0, 0, 0, 0.38);
    animation: resourceScreenFloat 5.5s ease-in-out infinite;
}

.resource-screen::before {
    position: absolute;
    top: 22px;
    left: 24px;
    width: 44%;
    height: 36%;
    border: 2px solid rgba(217, 190, 136, 0.9);
    background: repeating-linear-gradient(90deg, transparent 0 23px, rgba(217, 190, 136, 0.28) 24px 25px);
    content: "";
}

.resource-screen i {
    width: 72%;
    height: 3px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.55);
    animation: resourceScreenLine 2.8s ease-in-out infinite;
}

.resource-screen i:nth-child(2) {
    width: 54%;
    animation-delay: 300ms;
}

.resource-screen i:nth-child(3) {
    width: 64%;
    animation-delay: 600ms;
}

.resource-screen b {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: 34px;
    height: 34px;
    border: 2px solid var(--gold-400);
    border-radius: 50%;
}

.resource-screen__stand {
    width: 42%;
    height: 20px;
    border-top: 20px solid #dce2e5;
    border-right: 24px solid transparent;
    border-left: 24px solid transparent;
}

/* Component styles. */
.resource-card__visual--warranty {
    display: grid;
    place-items: center;
}

.resource-shield {
    position: relative;
    z-index: 2;
    width: 190px;
    height: 220px;
    background: linear-gradient(145deg, #f4ede1, var(--gold-500));
    clip-path: polygon(50% 0, 92% 18%, 84% 70%, 50% 100%, 16% 70%, 8% 18%);
    filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.34));
    animation: resourceShieldPulse 4s ease-in-out infinite;
}

.resource-shield i {
    position: absolute;
    top: 42%;
    left: 50%;
    width: 62px;
    height: 32px;
    border-bottom: 9px solid var(--navy-900);
    border-left: 9px solid var(--navy-900);
    transform: translate(-50%, -55%) rotate(-45deg);
}

.resource-shield__ring {
    position: absolute;
    width: 270px;
    height: 270px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: resourceShieldRing 3s ease-out infinite;
}

/* Return Policy page styles. */
.resource-card__visual--return {
    display: grid;
    place-items: center;
}

.resource-box {
    position: relative;
    width: 220px;
    height: 175px;
    border-radius: 6px;
    background: linear-gradient(135deg, #d9b375, #a97943);
    box-shadow: 0 28px 48px rgba(0, 0, 0, 0.35);
    animation: resourceBoxFloat 5s ease-in-out infinite;
}

.resource-box::before,
.resource-box::after {
    position: absolute;
    bottom: 100%;
    width: 50%;
    height: 52px;
    background: #e2be83;
    content: "";
}

.resource-box::before {
    left: 0;
    transform: skewY(-18deg);
    transform-origin: bottom right;
}

.resource-box::after {
    right: 0;
    transform: skewY(18deg);
    transform-origin: bottom left;
}

.resource-box i {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 34px;
    background: rgba(255, 241, 210, 0.7);
    transform: translateX(-50%);
}

.resource-return-arrow {
    position: absolute;
    z-index: 3;
    top: 5%;
    right: 9%;
    color: #ffffff;
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 7rem;
    line-height: 1;
    text-shadow: 0 16px 26px rgba(0, 0, 0, 0.32);
    animation: resourceReturnTurn 4s ease-in-out infinite;
}

/* Contact page and warehouse map styles. */
.resource-card__visual--contact {
    display: grid;
    place-items: center;
}

.resource-bubble {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 34px;
    box-shadow: 0 26px 48px rgba(0, 0, 0, 0.33);
}

.resource-bubble::after {
    position: absolute;
    bottom: -18px;
    width: 38px;
    height: 34px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 18% 100%);
    content: "";
}

.resource-bubble--one {
    width: 245px;
    height: 138px;
    color: var(--navy-900);
    background: #f7f4ec;
    transform: translate(-12%, -18%);
    animation: resourceChatOne 5s ease-in-out infinite;
}

.resource-bubble--two {
    width: 185px;
    height: 105px;
    color: #ffffff;
    background: var(--gold-500);
    transform: translate(42%, 54%);
    animation: resourceChatTwo 5s ease-in-out infinite;
}

.resource-bubble i {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.78;
    animation: resourceChatDot 1.8s ease-in-out infinite;
}

.resource-bubble i:nth-child(2) {
    animation-delay: 220ms;
}

.resource-bubble i:nth-child(3) {
    animation-delay: 440ms;
}

/* Motion and transition styles. */
@keyframes resourceBookFloat {
    0%, 100% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(-50%, -55%) rotate(-1.5deg); }
}

@keyframes resourceBookMiddle {
    0%, 100% { transform: translate(-63%, -49%) rotate(-7deg); }
    50% { transform: translate(-67%, -52%) rotate(-9deg); }
}

@keyframes resourceBookBack {
    0%, 100% { transform: translate(-35%, -50%) rotate(9deg); }
    50% { transform: translate(-31%, -53%) rotate(11deg); }
}

@keyframes resourceFloorFloat {
    0%, 100% { transform: perspective(700px) rotateX(57deg) rotateZ(-8deg) translateY(0); }
    50% { transform: perspective(700px) rotateX(57deg) rotateZ(-8deg) translateY(-9px); }
}

@keyframes resourceSinkFloat {
    0%, 100% { transform: translateY(0) rotate(1deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes resourceRipple {
    0% { opacity: 0.8; transform: scale(0.65); }
    100% { opacity: 0; transform: scale(3.6); }
}

@keyframes resourceFrameGlow {
    0%, 100% { border-color: rgba(8, 23, 40, 0.28); box-shadow: inset 0 0 16px rgba(8, 23, 40, 0.14); }
    50% { border-color: rgba(255, 255, 255, 0.82); box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.28); }
}

@keyframes resourceSlabSlide {
    0%, 14% { opacity: 0.45; transform: translateY(22px); }
    32%, 82% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0.45; transform: translateY(-12px); }
}

@keyframes resourceScreenFloat {
    0%, 100% { transform: translateY(0) rotateX(0); }
    50% { transform: translateY(-9px) rotateX(2deg); }
}

@keyframes resourceScreenLine {
    0%, 100% { opacity: 0.3; transform: scaleX(0.75); transform-origin: left; }
    50% { opacity: 1; transform: scaleX(1); transform-origin: left; }
}

@keyframes resourceShieldPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.055); }
}

@keyframes resourceShieldRing {
    0% { opacity: 0; transform: scale(0.65); }
    45% { opacity: 0.55; }
    100% { opacity: 0; transform: scale(1.18); }
}

@keyframes resourceBoxFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

@keyframes resourceReturnTurn {
    0%, 100% { transform: rotate(-10deg) scale(0.94); }
    50% { transform: rotate(14deg) scale(1.05); }
}

@keyframes resourceChatOne {
    0%, 100% { transform: translate(-12%, -18%); }
    50% { transform: translate(-12%, -25%); }
}

@keyframes resourceChatTwo {
    0%, 100% { transform: translate(42%, 54%); }
    50% { transform: translate(42%, 45%); }
}

@keyframes resourceChatDot {
    0%, 100% { opacity: 0.28; transform: translateY(0); }
    50% { opacity: 0.9; transform: translateY(-6px); }
}

/* Image presentation styles. */
@media (max-width: 900px) {
    .resource-card.resource-card--poster,
    .resource-card.resource-card--poster:nth-child(even) {
        grid-template-areas: "copy" "media";
        grid-template-columns: 1fr;
    }

    .resource-card--poster .resource-card__copy {
        padding: 42px 36px;
    }

    .resource-card__media {
        min-height: 430px;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 700px) {
    .resource-card.resource-card--poster,
    .resource-card.resource-card--poster:nth-child(even) {
        min-height: 0;
        padding: 0;
        border-radius: 20px;
    }

    .resource-card--poster .resource-card__copy {
        padding: 32px 24px;
    }

    .resource-card--poster .resource-card__content {
        margin-bottom: 28px;
        padding-top: 30px;
    }

    .resource-card__media {
        min-height: 350px;
    }

    .resource-card__visual {
        inset: 34px 22px;
    }

    .resource-card__media-label {
        right: 16px;
        bottom: 14px;
    }

    .resource-card__visual--catalog .resource-card__document {
        width: min(185px, 54%);
        padding: 22px 18px;
    }

    .resource-door,
    .resource-drawer {
        width: 170px;
    }

    .resource-card__visual--framed {
        grid-template-rows: 82px 175px;
    }

    .resource-shield {
        width: 145px;
        height: 170px;
    }

    .resource-shield__ring {
        width: 215px;
        height: 215px;
    }

    .resource-box {
        width: 175px;
        height: 140px;
    }

    .resource-return-arrow {
        font-size: 5rem;
    }

    .resource-bubble--one {
        width: 195px;
        height: 112px;
    }

    .resource-bubble--two {
        width: 150px;
        height: 86px;
    }
}

/* Return Policy page styles. */

.policy-hero {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 42%, rgba(200, 168, 107, 0.22), transparent 28%),
        linear-gradient(135deg, #081728, #173b59);
}

.policy-hero::before {
    position: absolute;
    inset: 0;
    opacity: 0.26;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    content: "";
}

.policy-hero__layout {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 680px;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    align-items: center;
    gap: clamp(50px, 9vw, 130px);
    padding-top: 150px;
    padding-bottom: 86px;
}

.policy-hero__copy .display-title {
    max-width: 760px;
}

.policy-hero__copy p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

.policy-hero__back {
    margin-top: 34px;
    color: #ffffff;
}

/* Component styles. */
.policy-hero__visual {
    position: relative;
    min-height: 390px;
    perspective: 1000px;
}

.policy-paper {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(270px, 70%);
    aspect-ratio: 0.75;
    border-radius: 9px;
    box-shadow: 0 30px 62px rgba(0, 0, 0, 0.32);
}

.policy-paper--back {
    background: var(--gold-500);
    transform: translate(-38%, -48%) rotate(9deg);
    animation: policyPaperBack 6.6s ease-in-out infinite;
}

.policy-paper--front {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 34px 30px;
    color: var(--navy-950);
    background: #f7f4ec;
    transform: translate(-55%, -50%) rotate(-3deg);
    animation: policyPaperFront 5.5s ease-in-out infinite;
}

.policy-paper--front small,
.policy-paper--front i {
    font-size: 0.6rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.policy-paper--front strong {
    font-family: Baskerville, "Times New Roman", serif;
    font-size: 2.25rem;
    font-weight: 500;
    line-height: 1.02;
}

/* Homepage hero carousel styles. */
.policy-facts {
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.policy-facts__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.policy-fact {
    display: grid;
    min-height: 190px;
    align-content: center;
    padding: 34px 42px;
    border-left: 1px solid var(--line);
}

.policy-fact:last-child {
    border-right: 1px solid var(--line);
}

.policy-fact > span {
    margin-bottom: 12px;
    color: var(--gold-500);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.policy-fact strong {
    color: var(--navy-950);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 500;
    line-height: 1.05;
}

.policy-fact p {
    margin: 10px 0 0;
    color: var(--ink-500);
}

.policy-section {
    background: #f4f6f7;
}

.policy-layout {
    display: grid;
    grid-template-columns: minmax(210px, 0.33fr) minmax(0, 1fr);
    align-items: start;
    gap: clamp(38px, 7vw, 90px);
}

/* Product page styles. */
.policy-nav {
    position: sticky;
    top: calc(var(--nav-height) + 42px);
    padding: 28px 0;
}

.policy-nav ol {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: policyNav;
}

.policy-nav li {
    counter-increment: policyNav;
    border-bottom: 1px solid rgba(8, 35, 59, 0.12);
}

.policy-nav a {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 2px;
    color: var(--ink-500);
    font-size: 0.78rem;
    font-weight: 700;
    transition: color 240ms ease, transform 300ms var(--ease-out);
}

.policy-nav a::before {
    color: var(--gold-500);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    content: "0" counter(policyNav);
}

.policy-nav a:hover,
.policy-nav a:focus-visible {
    color: var(--navy-950);
    transform: translateX(6px);
}

/* Component styles. */
.policy-document {
    overflow: hidden;
    border: 1px solid rgba(8, 35, 59, 0.11);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 24px 62px rgba(8, 35, 59, 0.1);
}

.policy-clause {
    position: relative;
    padding: clamp(38px, 6vw, 72px);
    border-bottom: 1px solid var(--line);
    scroll-margin-top: calc(var(--nav-height) + 36px);
}

.policy-clause__number {
    position: absolute;
    top: clamp(34px, 5vw, 62px);
    right: clamp(34px, 5vw, 62px);
    color: rgba(8, 35, 59, 0.09);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 6rem);
    line-height: 1;
}

.policy-clause h2 {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin-bottom: 26px;
    padding-right: 82px;
    color: var(--navy-950);
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    letter-spacing: -0.025em;
}

.policy-clause p {
    position: relative;
    z-index: 1;
    max-width: 740px;
    margin-bottom: 0;
    color: var(--ink-700);
    font-size: 1.02rem;
}

.policy-clause a {
    color: var(--navy-900);
    font-weight: 800;
    text-decoration: underline;
    text-decoration-color: var(--gold-500);
    text-underline-offset: 4px;
}

.policy-note {
    margin-top: 26px !important;
    padding: 22px 24px;
    border-left: 4px solid var(--gold-500);
    color: var(--navy-900) !important;
    background: #f2f4f5;
}

.policy-document__closing {
    padding: clamp(42px, 6vw, 72px);
    color: #ffffff;
    background: var(--navy-900);
}

.policy-document__closing p {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.74);
    font-family: Baskerville, "Times New Roman", serif;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    line-height: 1.3;
}

@keyframes policyPaperFront {
    0%, 100% { transform: translate(-55%, -50%) rotate(-3deg); }
    50% { transform: translate(-55%, -55%) rotate(-1deg); }
}

@keyframes policyPaperBack {
    0%, 100% { transform: translate(-38%, -48%) rotate(9deg); }
    50% { transform: translate(-34%, -52%) rotate(12deg); }
}

@media (max-width: 900px) {
    .policy-hero__layout {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 145px;
    }

    .policy-hero__visual {
        min-height: 360px;
    }

    .policy-layout {
        grid-template-columns: 1fr;
    }

    .policy-nav {
        position: static;
        padding: 0;
    }

    .policy-nav ol {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 24px;
    }
}

@media (max-width: 700px) {
    .policy-hero__layout {
        min-height: 0;
        padding-top: 125px;
        padding-bottom: 62px;
    }

    .policy-hero__visual {
        min-height: 310px;
    }

    .policy-paper {
        width: min(220px, 65%);
    }

    .policy-paper--front {
        padding: 28px 24px;
    }

    .policy-facts__grid {
        grid-template-columns: 1fr;
    }

    .policy-fact {
        min-height: 150px;
        padding: 28px 24px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .policy-nav ol {
        grid-template-columns: 1fr;
    }

    .policy-document {
        border-radius: 20px;
    }

    .policy-clause {
        padding: 36px 24px;
    }

    .policy-clause__number {
        top: 28px;
        right: 20px;
        font-size: 3rem;
    }

    .policy-clause h2 {
        padding-right: 54px;
    }

    .policy-document__closing {
        padding: 38px 24px;
    }

    .policy-document__closing .button {
        width: 100%;
    }
}

/* Footer certification-logo styles. */

/* Form field and submission-control styles. */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    padding: 0;
    border: 0;
    margin: -1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

/* Footer certification-logo styles. */
.certification-showcase {
    padding: clamp(74px, 9vw, 132px) 0;
    background:
        radial-gradient(circle at 88% 12%, rgba(209, 171, 99, 0.15), transparent 26%),
        linear-gradient(180deg, #f7f7f5, #eef1f2);
}

.certification-showcase__header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: clamp(34px, 8vw, 120px);
    padding-bottom: 46px;
    border-bottom: 1px solid rgba(8, 35, 59, 0.15);
}

.certification-showcase__header h2 {
    max-width: 790px;
    margin: 18px 0 0;
    color: var(--navy-950);
    font-size: clamp(2.6rem, 5vw, 5rem);
    letter-spacing: -0.04em;
    line-height: 0.98;
}

.certification-showcase__header p {
    max-width: 560px;
    margin: 0;
    color: var(--ink-500);
}

.certification-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.certification-card {
    display: grid;
    min-height: 345px;
    grid-template-rows: auto 1fr;
    gap: 42px;
    padding: clamp(28px, 3vw, 42px);
    border: 1px solid rgba(8, 35, 59, 0.12);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 52px rgba(8, 35, 59, 0.06);
    transition: transform 450ms var(--ease-out), box-shadow 450ms ease, border-color 300ms ease;
}

.certification-card:hover {
    border-color: rgba(209, 171, 99, 0.65);
    box-shadow: 0 30px 70px rgba(8, 35, 59, 0.12);
    transform: translateY(-8px);
}

.certification-card__mark {
    display: grid;
    width: 118px;
    height: 118px;
    place-content: center;
    padding: 10px;
    border: 1px solid rgba(8, 35, 59, 0.13);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(8, 35, 59, 0.09);
    text-align: center;
}

/* Image presentation styles. */
.certification-card__mark img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.certification-card__label {
    color: var(--gold-600);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.certification-card h3 {
    margin: 13px 0 15px;
    color: var(--navy-950);
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
    letter-spacing: -0.025em;
    line-height: 1.08;
}

.certification-card p {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.96rem;
}

/* Shared footer styles. */
.site-footer--expanded {
    position: relative;
    border-top: 4px solid var(--gold-500);
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 82% 2%, rgba(45, 91, 124, 0.25), transparent 30%),
        var(--navy-950);
}

.site-footer--expanded::before {
    position: absolute;
    top: 0;
    left: 0;
    width: min(190px, 24vw);
    height: 4px;
    background: #f0d899;
    content: "";
}

.footer-intro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 42px;
    padding-top: 54px;
    padding-bottom: 42px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-intro__brand {
    display: flex;
    align-items: center;
    gap: clamp(24px, 4vw, 54px);
}

.footer-intro__brand img {
    width: auto;
    height: 58px;
    flex: 0 0 auto;
}

.footer-intro__brand p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-intro__contact {
    display: inline-flex;
    min-width: 210px;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 17px 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease;
}

.footer-intro__contact:hover {
    border-color: var(--gold-500);
    color: var(--navy-950);
    background: var(--gold-500);
    transform: translateY(-2px);
}

.footer-grid--expanded {
    display: grid;
    grid-template-columns: minmax(150px, 0.72fr) minmax(230px, 1fr) minmax(360px, 1.55fr) minmax(210px, 0.9fr);
    gap: clamp(34px, 4.5vw, 72px);
    padding: 58px 0 50px;
}

.site-footer--expanded .footer-column h2 {
    margin-bottom: 22px;
    color: var(--gold-400);
}

.footer-link-list {
    grid-template-columns: 1fr;
}

.site-footer--expanded .footer-column a {
    color: rgba(255, 255, 255, 0.72);
}

.site-footer--expanded .footer-column a:hover {
    color: var(--gold-400);
}

.footer-column--newsletter > p {
    max-width: 360px;
    margin: 0 0 20px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.92rem;
}

.footer-newsletter {
    display: grid;
    grid-template-columns: 1fr 48px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    transition: border-color 250ms ease, background 250ms ease;
}

.footer-newsletter:focus-within {
    border-color: var(--gold-500);
    background: rgba(255, 255, 255, 0.08);
}

.footer-newsletter input {
    min-width: 0;
    padding: 14px 8px 14px 18px;
    border: 0;
    outline: 0;
    color: #ffffff;
    background: transparent;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-newsletter button {
    border: 0;
    color: var(--navy-950);
    background: var(--gold-500);
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 220ms ease, transform 220ms ease;
}

.footer-newsletter button:hover {
    background: var(--gold-400);
}

.footer-newsletter button:hover span {
    display: inline-block;
    transform: translateX(3px);
}

.footer-column--newsletter small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.68rem;
    line-height: 1.45;
}

.footer-locations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 30px;
}

.footer-locations address {
    display: grid;
    gap: 6px;
    margin: 0;
    padding-left: 16px;
    border-left: 1px solid rgba(209, 171, 99, 0.4);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-style: normal;
    line-height: 1.55;
}

.footer-locations strong {
    color: #ffffff;
    font-size: 0.84rem;
}

.footer-locations a {
    width: fit-content;
    color: var(--gold-400) !important;
    font-weight: 700;
}

.footer-social-links {
    display: grid;
    gap: 12px;
}

.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    color: #ffffff;
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
}

.footer-social-icon--instagram {
    font-size: 1.25rem;
}

.footer-certifications {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 28px;
}

.footer-certification-badge {
    display: grid;
    min-height: 66px;
    place-content: center;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: #ffffff;
    text-align: center;
    transition: transform 250ms ease;
}

.footer-certification-badge:hover {
    transform: translateY(-3px);
}

/* Footer certification-logo styles. */
.footer-certification-badge img {
    display: block;
    width: 100%;
    height: 56px;
    object-fit: contain;
}

.site-footer--expanded .footer-bottom {
    align-items: center;
    padding: 22px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom__links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.footer-bottom__links a {
    transition: color 220ms ease;
}

.footer-bottom__links a:hover {
    color: var(--gold-400);
}

@media (max-width: 1160px) {
    .footer-grid--expanded {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-column--social {
        grid-column: auto;
    }
}

@media (max-width: 860px) {
    .certification-showcase__header,
    .certification-grid {
        grid-template-columns: 1fr;
    }

    .certification-card {
        min-height: 0;
    }

    .footer-intro {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-intro__brand {
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 620px) {
    .footer-grid--expanded,
    .footer-locations {
        grid-template-columns: 1fr;
    }

    .footer-intro__contact {
        width: 100%;
    }

    .footer-certifications {
        max-width: 320px;
    }

    .site-footer--expanded .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Motion and transition styles. */
@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;
    }

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

/* Floating site navigation styles. */

:root {
    --navy-950: #081a2b;
    --navy-900: #102b44;
    --navy-800: #1b405d;
    --gold-500: #c7a35f;
    --gold-400: #dbc083;
    --ink-900: #18222a;
    --ink-700: #51575a;
    --ink-500: #777873;
    --line: #ddd8cf;
    --white: #fffefa;
    --warm-white: #fbfaf6;
    --warm-ivory: #f4f1eb;
    --warm-stone: #e8e1d6;
    --warm-wood: #795b46;
    --shadow-sm: 0 12px 34px rgba(35, 31, 27, 0.07);
    --shadow-lg: 0 26px 70px rgba(35, 31, 27, 0.16);
}

body {
    color: var(--ink-900);
    background:
        linear-gradient(180deg, #f6f3ed 0, #fbfaf7 340px, #fffefa 760px);
}

::selection {
    color: var(--white);
    background: var(--warm-wood);
}

/* Floating site navigation styles. */
.site-header {
    color: var(--navy-900);
}

.nav-shell {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 254, 250, 0.91);
    box-shadow:
        0 18px 52px rgba(35, 31, 27, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(118%);
    -webkit-backdrop-filter: blur(24px) saturate(118%);
}

.site-header.is-scrolled .nav-shell {
    background: rgba(255, 254, 250, 0.96);
    box-shadow:
        0 20px 58px rgba(35, 31, 27, 0.17),
        0 2px 8px rgba(35, 31, 27, 0.05);
}

.site-nav > a:not(.button) {
    color: #454d54;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button).is-active {
    color: var(--navy-900);
}

.site-nav > a:not(.button)::after {
    background: var(--gold-500);
}

.site-nav .button,
.button--navy {
    color: #ffffff;
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.site-nav .button:hover,
.site-nav .button:focus-visible,
.button--navy:hover,
.button--navy:focus-visible {
    border-color: var(--navy-800);
    background: var(--navy-800);
    box-shadow: 0 14px 32px rgba(16, 43, 68, 0.22);
}

.nav-toggle {
    border-color: rgba(16, 43, 68, 0.16);
    background: rgba(255, 254, 250, 0.94);
}

/* Button and call-to-action styles. */
.button {
    color: #ffffff;
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.button::before {
    background: linear-gradient(
        110deg,
        transparent 18%,
        rgba(255, 255, 255, 0.24) 48%,
        transparent 74%
    );
}

.button:hover,
.button:focus-visible {
    border-color: var(--navy-800);
    background: var(--navy-800);
    box-shadow: 0 12px 30px rgba(16, 43, 68, 0.22);
}

.button--outline {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(27, 24, 21, 0.08);
}

.button--outline:hover,
.button--outline:focus-visible {
    color: var(--navy-900);
    border-color: var(--white);
    background: var(--white);
}

.button--outline-dark {
    color: var(--navy-900);
    border-color: rgba(16, 43, 68, 0.58);
    background: rgba(255, 254, 250, 0.4);
}

.button--outline-dark:hover,
.button--outline-dark:focus-visible {
    color: #ffffff;
    border-color: var(--navy-900);
    background: var(--navy-900);
}

/* Image presentation styles. */
.hero {
    background: #28231f;
}

.hero__slide img {
    filter: saturate(0.86) contrast(1.035) sepia(0.035);
}

.hero__slide::before {
    background: linear-gradient(
        90deg,
        rgba(30, 26, 22, 0.78) 0%,
        rgba(30, 26, 22, 0.48) 45%,
        rgba(30, 26, 22, 0.1) 100%
    );
}

.hero__slide--campaign::before {
    background: linear-gradient(
        90deg,
        rgba(30, 25, 21, 0.88) 0%,
        rgba(30, 25, 21, 0.72) 28%,
        rgba(30, 25, 21, 0.34) 51%,
        rgba(30, 25, 21, 0.06) 76%,
        transparent 100%
    );
}

.hero__slide::after {
    background: linear-gradient(0deg, rgba(28, 24, 21, 0.46), transparent 48%);
}

.hero__content p {
    color: rgba(255, 255, 255, 0.88);
}

.hero-carousel__arrow,
.hero-carousel__dot {
    background: rgba(31, 27, 23, 0.4);
}

.hero-carousel__dot.is-active,
.hero-carousel__arrow:hover,
.hero-carousel__arrow:focus-visible,
.hero-carousel__dot:hover,
.hero-carousel__dot:focus-visible {
    border-color: var(--gold-500);
    background: var(--gold-500);
}

/* Homepage hero carousel styles. */
.page-hero {
    background: #28231f;
}

.page-hero__media {
    filter: saturate(0.86) contrast(1.03) sepia(0.035);
}

.page-hero__media::after {
    background: linear-gradient(
        90deg,
        rgba(28, 24, 21, 0.9) 0%,
        rgba(28, 24, 21, 0.58) 46%,
        rgba(28, 24, 21, 0.16) 100%
    );
}

.page-hero__content p {
    color: rgba(255, 255, 255, 0.86);
}

/* Image presentation styles. */
.section,
.product-catalog,
.series-gallery,
.certification-showcase,
.policy-section {
    background-color: var(--white);
}

.home-gallery-feature,
.locations-section,
.resource-library,
.policy-facts {
    background-color: var(--warm-ivory);
}

.section--navy,
.campaign-section {
    color: #ffffff;
    background:
        radial-gradient(circle at 82% 10%, rgba(199, 163, 95, 0.07), transparent 31%),
        var(--navy-900);
}

.section--navy .lead {
    color: rgba(255, 255, 255, 0.76);
}

.section-heading,
.promise-strip,
.promise-item,
.catalog-series,
.gallery-series,
.series-nav,
.footer-intro,
.site-footer--expanded .footer-bottom {
    border-color: var(--line);
}

.promise-strip {
    background: var(--warm-white);
}

.promise-item {
    background: var(--warm-white);
}

.promise-item:hover {
    color: var(--navy-900);
    background: var(--warm-ivory);
}

.promise-item p {
    color: var(--ink-500);
}

.split-media img,
.home-gallery-shot img,
.gallery-card img,
.location-card__media img {
    filter: saturate(0.88) contrast(1.025) sepia(0.025);
}

.campaign-carousel__viewport {
    border-color: rgba(255, 255, 255, 0.17);
    background: var(--warm-stone);
    box-shadow: 0 32px 70px rgba(15, 20, 23, 0.25);
}

.campaign-slide img {
    filter: saturate(0.9) contrast(1.02);
}

/* Product grid and catalog layout. */
.series-nav {
    background: rgba(248, 246, 241, 0.92);
    box-shadow: 0 18px 46px rgba(35, 31, 27, 0.07);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.series-nav a {
    color: #667078;
}

.series-nav a:hover {
    color: var(--warm-wood);
}

.catalog-container {
    border-color: var(--line);
}

.catalog-series::before {
    border-color: var(--white);
    background: var(--gold-500);
    box-shadow: 0 0 0 1px var(--line);
}

.catalog-card__media {
    background: #f3f1ec;
}

.catalog-card__media img {
    filter: saturate(0.93) contrast(1.01);
}

.catalog-card__badge {
    background: rgba(16, 43, 68, 0.94);
    box-shadow: 0 10px 25px rgba(16, 43, 68, 0.18);
}

.catalog-card__action {
    color: #ffffff;
    border-color: var(--navy-900);
    background: var(--navy-900);
}

.catalog-card:hover .catalog-card__media img,
.catalog-card:focus-visible .catalog-card__media img {
    filter: brightness(0.76) saturate(0.96);
}

.catalog-gallery-link {
    border-color: rgba(16, 43, 68, 0.2);
    color: var(--navy-900);
    background: rgba(255, 254, 250, 0.94);
    box-shadow: 0 13px 34px rgba(35, 31, 27, 0.06);
}

.catalog-gallery-link:hover,
.catalog-gallery-link:focus-visible {
    border-color: var(--navy-900);
    color: #ffffff;
    background: var(--navy-900);
    box-shadow: 0 18px 38px rgba(16, 43, 68, 0.17);
}

/* Gallery card styles. */
.gallery-card,
.location-card,
.certification-card,
.contact-form,
.policy-clause {
    border-color: var(--line);
    background: var(--warm-white);
    box-shadow: var(--shadow-sm);
}

.gallery-card {
    background: var(--navy-950);
}

.gallery-card:hover,
.location-card:hover,
.certification-card:hover {
    box-shadow: var(--shadow-lg);
}

.gallery-card--placeholder {
    background:
        radial-gradient(circle at 82% 18%, rgba(199, 163, 95, 0.16), transparent 31%),
        linear-gradient(145deg, var(--navy-900), var(--navy-950));
}

.location-card__placeholder {
    color: var(--navy-900);
    background:
        linear-gradient(145deg, rgba(199, 163, 95, 0.11), transparent 52%),
        var(--warm-stone);
}

.form-field input,
.form-field select,
.form-field textarea,
.footer-newsletter {
    border-color: var(--line);
    background: var(--warm-white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold-500);
    box-shadow: 0 0 0 4px rgba(199, 163, 95, 0.12);
}

.cta-panel {
    color: var(--navy-900);
    background:
        radial-gradient(circle at 85% 25%, rgba(199, 163, 95, 0.12), transparent 30%),
        var(--warm-stone);
}

.cta-panel h2 {
    color: var(--navy-900);
}

/* Homepage hero carousel styles. */
.resource-card.resource-card--poster {
    border-color: rgba(255, 255, 255, 0.09);
    background: linear-gradient(135deg, #102b44, #203e53);
    box-shadow: 0 26px 65px rgba(35, 31, 27, 0.16);
}

.resource-card.resource-card--poster:nth-child(even) {
    background: linear-gradient(225deg, #172f42, #3d4a4d);
}

.resource-card.resource-card--poster:hover {
    border-color: rgba(199, 163, 95, 0.55);
    box-shadow: 0 34px 82px rgba(35, 31, 27, 0.22);
}

.resource-card__media,
.resource-card--poster:nth-child(2) .resource-card__media,
.resource-card--poster:nth-child(3) .resource-card__media,
.resource-card--poster:nth-child(4) .resource-card__media,
.resource-card--poster:nth-child(5) .resource-card__media,
.resource-card--poster:nth-child(6) .resource-card__media,
.resource-card--poster:nth-child(7) .resource-card__media,
.resource-card--poster:nth-child(8) .resource-card__media {
    background:
        linear-gradient(145deg, rgba(121, 91, 70, 0.88), rgba(16, 43, 68, 0.96) 72%);
}

.resource-card__media::before {
    opacity: 0.28;
}

.resource-card__media-label {
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(28, 24, 21, 0.52);
}

/* Footer certification-logo styles. */
.site-footer,
.site-footer--expanded {
    color: rgba(255, 255, 255, 0.72);
    background:
        radial-gradient(circle at 82% 2%, rgba(121, 91, 70, 0.2), transparent 31%),
        var(--navy-950);
}

.site-footer--expanded {
    border-color: var(--gold-500);
}

.site-footer--expanded::before {
    background: var(--gold-400);
}

.site-footer--expanded .footer-column h2 {
    color: var(--gold-400);
}

.footer-intro,
.site-footer--expanded .footer-bottom {
    border-color: rgba(255, 255, 255, 0.12);
}

.footer-intro__contact:hover {
    color: var(--navy-950);
    border-color: var(--gold-500);
    background: var(--gold-500);
}

.footer-locations address {
    border-color: rgba(199, 163, 95, 0.38);
}

.footer-certification-badge {
    background: #fffefa;
    box-shadow: 0 8px 20px rgba(5, 16, 26, 0.12);
}

@media (max-width: 980px) {
    .site-nav {
        background: rgba(255, 254, 250, 0.98);
        box-shadow: 0 22px 46px rgba(35, 31, 27, 0.16);
    }
}

@media (max-width: 700px) {
    .hero__slide::before,
    .hero__slide--campaign::before {
        background: linear-gradient(
            0deg,
            rgba(28, 24, 21, 0.94) 0%,
            rgba(28, 24, 21, 0.68) 52%,
            rgba(28, 24, 21, 0.13) 100%
        );
    }
}

/* Hero typography and content positioning. */

/* Homepage hero carousel styles. */
.hero__slide {
    pointer-events: none;
}

/* Hero typography and content positioning. */
.hero__slide--poster {
    inset: 0;
    display: grid;
    place-items: center;
    background: #f2ede5;
    cursor: pointer;
}

/* Homepage hero carousel styles. */
.hero__slide--poster.is-active {
    pointer-events: auto;
}

.hero__slide--poster img,
.hero__slide--poster.is-active img {
    width: 100%;
    height: 100%;
    padding: clamp(12px, 2vw, 34px);
    object-fit: contain;
    object-position: center;
    filter: none;
    transform: scale(0.995);
}

/* Homepage hero carousel styles. */
.hero__slide--poster.is-active img {
    transform: scale(1.015);
}

/* Shared design token. */
.hero__slide--poster::before,
.hero__slide--poster::after {
    display: none;
}

/* Homepage hero carousel styles. */
.hero__slide--poster:focus-visible {
    outline: 3px solid var(--gold-500);
    outline-offset: -8px;
}

/* Homepage hero carousel styles. */
.hero__scroll {
    transition: opacity 350ms ease, visibility 350ms ease;
}

.hero.is-poster-active .hero__scroll {
    opacity: 0;
    visibility: hidden;
}

/* Homepage hero carousel styles. */
.hero.is-poster-active .hero-carousel__arrow,
.hero.is-poster-active .hero-carousel__dot {
    border-color: rgba(255, 255, 255, 0.55);
    color: #ffffff;
    background: rgba(7, 28, 46, 0.88);
}

.hero.is-poster-active .hero-carousel__dot.is-active,
.hero.is-poster-active .hero-carousel__arrow:hover,
.hero.is-poster-active .hero-carousel__arrow:focus-visible,
.hero.is-poster-active .hero-carousel__dot:hover,
.hero.is-poster-active .hero-carousel__dot:focus-visible {
    border-color: var(--gold-500);
    background: var(--gold-500);
}

/* Responsive homepage carousel and hero styles. */
@media (max-width: 700px) {
    .hero__slide--poster img,
    .hero__slide--poster.is-active img {
        padding: 8px;
    }

    .hero.is-poster-active .hero-carousel {
        bottom: 20px;
    }
}

/* Homepage hero carousel styles. */
@media (prefers-reduced-motion: reduce) {
    .hero__slide--poster img,
    .hero__slide--poster.is-active img {
        transform: none;
    }
}

/* Gallery grid and editorial layout. */

/* Gallery page styles. */
.series-gallery {
    padding: 10px 0 72px;
}

.series-gallery__container {
    width: min(1460px, calc(100% - 64px));
}

.gallery-series {
    padding: 52px 0 62px;
}

.gallery-series__header {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 480px);
    gap: 38px;
    margin-bottom: 24px;
}

.gallery-series__number {
    margin-bottom: 7px;
    font-size: 0.64rem;
}

.gallery-series h2 {
    font-size: clamp(2.25rem, 3.8vw, 4.4rem);
}

.gallery-series__header p {
    margin-bottom: 9px;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Homepage hero carousel styles. */
.series-gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 13px;
}

.series-gallery__grid .gallery-card,
.series-gallery__grid .gallery-card:nth-child(1),
.series-gallery__grid .gallery-card:nth-child(2) {
    grid-column: auto;
    min-height: 0;
    border-radius: 14px;
    aspect-ratio: 4 / 3;
}

.series-gallery__grid .gallery-card img,
.series-gallery__grid .gallery-card:nth-child(1) img,
.series-gallery__grid .gallery-card:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Button and call-to-action styles. */
.gallery-series__more {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.gallery-series__more-button {
    display: inline-flex;
    min-height: 46px;
    padding: 0 24px;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border: 1px solid rgba(16, 43, 68, 0.34);
    border-radius: 999px;
    color: var(--navy-950);
    background: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 250ms ease, background 250ms ease, border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.gallery-series__more-button span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--navy-950);
    font-size: 1rem;
    line-height: 1;
    transition: color 250ms ease, background 250ms ease, transform 350ms var(--ease-out);
}

.gallery-series__more-button:hover,
.gallery-series__more-button:focus-visible {
    color: #ffffff;
    border-color: var(--navy-950);
    background: var(--navy-950);
    box-shadow: 0 14px 30px rgba(4, 21, 35, 0.16);
    transform: translateY(-2px);
}

.gallery-series__more-button:hover span,
.gallery-series__more-button:focus-visible span {
    color: var(--navy-950);
    background: var(--gold-500);
    transform: rotate(90deg);
}

/* Image lightbox styles. */
.gallery-more-modal {
    position: fixed;
    z-index: 1900;
    inset: 0;
    display: grid;
    padding: 28px;
    place-items: center;
    background: rgba(3, 10, 18, 0.86);
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, visibility 300ms ease;
}

.gallery-more-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-more-modal__panel {
    position: relative;
    width: min(1320px, 100%);
    max-height: calc(100svh - 56px);
    overflow: auto;
    padding: clamp(28px, 4vw, 56px);
    border: 1px solid rgba(199, 163, 95, 0.3);
    border-radius: 28px;
    background: #fffefa;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
    transform: translateY(18px) scale(0.975);
    transition: transform 420ms var(--ease-out);
}

.gallery-more-modal.is-open .gallery-more-modal__panel {
    transform: translateY(0) scale(1);
}

.gallery-more-modal__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    align-items: end;
    gap: 36px;
    margin-bottom: 28px;
    padding-right: 52px;
}

.gallery-more-modal__header h2 {
    margin: 8px 0 0;
    color: var(--navy-950);
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 4vw, 4.4rem);
    font-weight: 400;
    line-height: 0.98;
}

.gallery-more-modal__header p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.7;
}

.gallery-more-modal__close {
    position: absolute;
    z-index: 2;
    top: 18px;
    right: 18px;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #ffffff;
    background: var(--navy-950);
    cursor: pointer;
    font-size: 1.55rem;
    line-height: 1;
    transition: color 250ms ease, background 250ms ease, transform 250ms ease;
}

.gallery-more-modal__close:hover,
.gallery-more-modal__close:focus-visible {
    color: var(--navy-950);
    background: var(--gold-500);
    transform: rotate(90deg);
}

.gallery-more-modal__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.gallery-more-card {
    position: relative;
    min-height: 220px;
    aspect-ratio: 4 / 3;
    border-radius: 14px;
}

.gallery-more-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image presentation styles. */
.gallery-more-card__placeholder {
    position: absolute;
    inset: 0;
    display: none;
    padding: 22px;
    place-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.78);
    background:
        radial-gradient(circle at 80% 18%, rgba(199, 163, 95, 0.24), transparent 34%),
        linear-gradient(145deg, #102b44, #071b2d);
    text-align: center;
}

.gallery-more-card__placeholder strong {
    color: #ffffff;
    font-size: 1rem;
}

.gallery-more-card__placeholder small {
    color: var(--gold-400);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-more-card__placeholder span {
    overflow-wrap: anywhere;
    font-size: 0.7rem;
    line-height: 1.5;
}

.gallery-more-card.is-missing {
    cursor: default;
}

.gallery-more-card.is-missing img {
    display: none;
}

.gallery-more-card.is-missing .gallery-more-card__placeholder {
    display: grid;
}

body.gallery-more-open {
    overflow: hidden;
}

/* Card component styles. */
@media (max-width: 1120px) {
    .series-gallery__grid,
    .gallery-more-modal__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 760px) {
    .series-gallery__container {
        width: min(100% - 32px, 1460px);
    }

    .gallery-series {
        padding: 42px 0 50px;
    }

    .gallery-series__header,
    .gallery-more-modal__header {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .series-gallery__grid,
    .gallery-more-modal__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .gallery-more-modal {
        padding: 12px;
    }

    .gallery-more-modal__panel {
        max-height: calc(100svh - 24px);
        padding: 28px 18px 22px;
        border-radius: 20px;
    }

    .gallery-more-modal__header {
        padding-right: 42px;
    }

    .gallery-more-card {
        min-height: 150px;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 460px) {
    .series-gallery__grid,
    .gallery-more-modal__grid {
        grid-template-columns: 1fr;
    }

    .gallery-more-card {
        min-height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-more-modal__panel,
    .gallery-series__more-button,
    .gallery-series__more-button span {
        transition: none;
    }
}

/* Gallery grid and editorial layout. */

/* Component styles. */
.series-gallery__grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, clamp(145px, 9.8vw, 185px));
    gap: 14px;
}

/* Card component styles. */
.series-gallery__grid .gallery-card,
.series-gallery__grid .gallery-card:nth-child(1),
.series-gallery__grid .gallery-card:nth-child(2) {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 13px;
    aspect-ratio: auto;
}

/* Shared corner-radius styles. */
.series-gallery__grid .gallery-card:nth-child(1) {
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(8, 35, 59, 0.11);
}

/* Image lightbox styles. */
.series-gallery__grid .gallery-card img,
.series-gallery__grid .gallery-card:nth-child(1) img,
.series-gallery__grid .gallery-card:nth-child(2) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Component styles. */
.gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
}

.gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(2) {
    grid-column: 7 / 10;
    grid-row: 1;
}

.gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1;
}

.gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(4) {
    grid-column: 7 / 10;
    grid-row: 2;
}

.gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 2;
}

/* Component styles. */
.gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(1) {
    grid-column: 7 / 13;
    grid-row: 1 / 3;
}

.gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(2) {
    grid-column: 1 / 4;
    grid-row: 1;
}

.gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(3) {
    grid-column: 4 / 7;
    grid-row: 1;
}

.gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(4) {
    grid-column: 1 / 4;
    grid-row: 2;
}

.gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(5) {
    grid-column: 4 / 7;
    grid-row: 2;
}

/* Component styles. */
.gallery-series__more {
    margin-top: 20px;
}

/* Component styles. */
@media (max-width: 1120px) {
    .series-gallery__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        grid-template-rows: none;
    }

    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card {
        grid-column: auto;
        grid-row: auto;
        height: auto;
        border-radius: 14px;
        aspect-ratio: 4 / 3;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 760px) {
    .series-gallery__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card {
        grid-column: auto;
        grid-row: auto;
        aspect-ratio: 4 / 3;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 460px) {
    .series-gallery__grid {
        grid-template-columns: 1fr;
    }
}

/* Gallery card styles. */

/* Image lightbox styles. */
.gallery-more-modal {
    padding: clamp(18px, 3vw, 42px);
}

/* Image lightbox styles. */
.gallery-more-modal__panel {
    width: min(1180px, calc(100vw - 64px));
    max-height: min(86svh, 820px);
    padding: clamp(28px, 3vw, 42px);
    border-radius: 24px;
}

/* Gallery page styles. */
.gallery-more-modal__header {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 30px;
    margin-bottom: 24px;
    padding-right: 48px;
}

.gallery-more-modal__header h2 {
    font-size: clamp(2.15rem, 3.4vw, 3.65rem);
    line-height: 1;
}

.gallery-more-modal__header p {
    font-size: 0.93rem;
    line-height: 1.65;
}

/* Image presentation styles. */
.gallery-more-modal__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, clamp(150px, 10vw, 180px));
    gap: 13px;
}

/* Component styles. */
.gallery-more-modal__grid .gallery-more-card {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 13px;
    aspect-ratio: auto;
}

/* Image lightbox styles. */
.gallery-more-modal__grid .gallery-more-card:nth-child(1) {
    grid-column: 1 / 7;
    grid-row: 1 / 3;
    border-radius: 18px;
}

/* Component styles. */
.gallery-more-modal__grid .gallery-more-card:nth-child(2) {
    grid-column: 7 / 10;
    grid-row: 1;
}

.gallery-more-modal__grid .gallery-more-card:nth-child(3) {
    grid-column: 10 / 13;
    grid-row: 1;
}

.gallery-more-modal__grid .gallery-more-card:nth-child(4) {
    grid-column: 7 / 10;
    grid-row: 2;
}

.gallery-more-modal__grid .gallery-more-card:nth-child(5) {
    grid-column: 10 / 13;
    grid-row: 2;
}

/* Image presentation styles. */
.gallery-more-modal__grid .gallery-more-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Component styles. */
@media (max-width: 900px) {
    .gallery-more-modal__panel {
        width: min(100%, calc(100vw - 28px));
        max-height: calc(100svh - 28px);
        padding: 30px 24px 26px;
        border-radius: 20px;
    }

    .gallery-more-modal__header {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 20px;
    }

    .gallery-more-modal__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 10px;
    }

    .gallery-more-modal__grid .gallery-more-card,
    .gallery-more-modal__grid .gallery-more-card:nth-child(2),
    .gallery-more-modal__grid .gallery-more-card:nth-child(3),
    .gallery-more-modal__grid .gallery-more-card:nth-child(4),
    .gallery-more-modal__grid .gallery-more-card:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .gallery-more-modal__grid .gallery-more-card:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: auto;
        height: auto;
        aspect-ratio: 16 / 8;
    }
}

/* Responsive styles for smaller screens. */
@media (max-width: 560px) {
    .gallery-more-modal {
        padding: 8px;
    }

    .gallery-more-modal__panel {
        width: 100%;
        max-height: calc(100svh - 16px);
        padding: 26px 16px 20px;
        border-radius: 17px;
    }

    .gallery-more-modal__header {
        padding-right: 42px;
    }

    .gallery-more-modal__header h2 {
        font-size: clamp(2rem, 10vw, 2.75rem);
    }

    .gallery-more-modal__grid {
        grid-template-columns: 1fr;
    }

    .gallery-more-modal__grid .gallery-more-card,
    .gallery-more-modal__grid .gallery-more-card:nth-child(1) {
        grid-column: auto;
        aspect-ratio: 4 / 3;
    }
}

/* Gallery page styles. */

/* Button and call-to-action styles. */
.gallery-series__more-label {
    display: inline-block;
}

/* Component styles. */
.gallery-series__more-button.is-open span:last-child {
    color: var(--navy-950);
    background: var(--gold-500);
    transform: rotate(45deg);
}

/* Motion and transition styles. */
.gallery-series__extra-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    max-height: 0;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
        max-height 900ms var(--ease-out),
        margin-top 500ms var(--ease-out),
        opacity 450ms ease,
        transform 650ms var(--ease-out),
        visibility 450ms ease;
}

/* Component styles. */
.gallery-series__extra-grid.is-open {
    max-height: 4200px;
    margin-top: 26px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Image presentation styles. */
.gallery-series__extra-grid .gallery-more-card,
.gallery-series__extra-grid .gallery-more-card:nth-child(1),
.gallery-series__extra-grid .gallery-more-card:nth-child(2),
.gallery-series__extra-grid .gallery-more-card:nth-child(3),
.gallery-series__extra-grid .gallery-more-card:nth-child(4),
.gallery-series__extra-grid .gallery-more-card:nth-child(5) {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 18px;
    aspect-ratio: 4 / 3;
}

/* Image presentation styles. */
.gallery-series__extra-grid .gallery-more-card:nth-child(5) {
    grid-column: 1 / -1;
    width: calc((100% - 18px) / 2);
    justify-self: center;
}

/* Image lightbox styles. */
.gallery-series__extra-grid .gallery-more-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Component styles. */
.gallery-series__extra-grid .gallery-more-card__placeholder {
    border-radius: inherit;
}

/* Responsive styles for smaller screens. */
@media (max-width: 760px) {
    .gallery-series__extra-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-series__extra-grid .gallery-more-card,
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: auto;
        width: 100%;
        border-radius: 14px;
        aspect-ratio: 4 / 3;
    }
}

/* Motion and transition styles. */
@media (prefers-reduced-motion: reduce) {
    .gallery-series__extra-grid {
        transition: none;
    }
}

/* Gallery page styles. */

/* Typography styles. */
.gallery-series__more-button .gallery-series__more-label,
.gallery-series__more-button:hover .gallery-series__more-label,
.gallery-series__more-button:focus-visible .gallery-series__more-label {
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: inherit;
    white-space: nowrap;
    transform: none;
}

/* Image presentation styles. */
@media (min-width: 1121px) {
    .series-gallery__grid {
        grid-template-rows: repeat(2, clamp(170px, 11.2vw, 215px));
        gap: 16px;
    }
}

/* Card component styles. */
@media (min-width: 761px) and (max-width: 1120px) {
    .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card {
        aspect-ratio: 4 / 3.15;
    }
}

/* Gallery page styles. */

/* Layout, grid, and spacing styles. */
@media (min-width: 761px) {
    .series-gallery__grid,
    .gallery-series__extra-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 18px;
    }
}

/* Image presentation styles. */
.gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
.gallery-series:nth-child(even) .series-gallery__grid .gallery-card,
.gallery-series__extra-grid .gallery-more-card,
.gallery-series__extra-grid .gallery-more-card:nth-child(1),
.gallery-series__extra-grid .gallery-more-card:nth-child(2),
.gallery-series__extra-grid .gallery-more-card:nth-child(3),
.gallery-series__extra-grid .gallery-more-card:nth-child(4),
.gallery-series__extra-grid .gallery-more-card:nth-child(5) {
    grid-column: auto !important;
    grid-row: auto !important;
    width: 100%;
    height: auto;
    min-height: 0;
    border-radius: 18px;
    background: #f4f2ed;
    box-shadow: 0 16px 36px rgba(8, 35, 59, 0.09);
    aspect-ratio: 16 / 10;
    transition: transform 350ms var(--ease-out), box-shadow 350ms ease;
}

/* Component styles. */
.series-gallery__grid .gallery-card:nth-child(5),
.gallery-series__extra-grid .gallery-more-card:nth-child(5) {
    grid-column: 1 / -1 !important;
    width: calc((100% - 18px) / 2);
    justify-self: center;
}

/* Component visibility states. */
.series-gallery__grid .gallery-card img,
.series-gallery__grid .gallery-card:nth-child(1) img,
.series-gallery__grid .gallery-card:nth-child(2) img,
.gallery-series__extra-grid .gallery-more-card img {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #f4f2ed;
    object-fit: contain;
    object-position: center;
}

/* Image lightbox styles. */
.series-gallery__grid .gallery-card:hover img,
.series-gallery__grid .gallery-card:focus-visible img,
.gallery-series__extra-grid .gallery-more-card:hover img,
.gallery-series__extra-grid .gallery-more-card:focus-visible img {
    filter: saturate(1.06) contrast(1.02);
    transform: none;
    animation: none;
}

.series-gallery__grid .gallery-card:hover,
.series-gallery__grid .gallery-card:focus-visible,
.gallery-series__extra-grid .gallery-more-card:hover,
.gallery-series__extra-grid .gallery-more-card:focus-visible {
    box-shadow: 0 24px 48px rgba(8, 35, 59, 0.16);
    transform: translateY(-4px);
}

/* Image presentation styles. */
.gallery-series__extra-grid.is-open {
    margin-top: 18px;
}

/* Image presentation styles. */
.gallery-series__more {
    margin-top: 24px;
}

/* Responsive styles for smaller screens. */
@media (max-width: 760px) {
    .series-gallery__grid,
    .gallery-series__extra-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card,
    .series-gallery__grid .gallery-card:nth-child(5),
    .gallery-series__extra-grid .gallery-more-card,
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: auto !important;
        width: 100%;
        border-radius: 14px;
        aspect-ratio: 4 / 3;
    }
}

/* Gallery grid and editorial layout. */

@media (min-width: 1121px) {
    .series-gallery__grid,
    .gallery-series__extra-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        grid-template-rows: none;
        gap: 18px;
    }

    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card,
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card,
    .gallery-series__extra-grid .gallery-more-card,
    .gallery-series__extra-grid .gallery-more-card:nth-child(3),
    .gallery-series__extra-grid .gallery-more-card:nth-child(4),
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: span 4 !important;
        grid-row: auto !important;
        width: 100%;
        height: auto;
        min-height: 0;
        aspect-ratio: 4 / 3;
    }

    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(1),
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(1),
    .gallery-series__extra-grid .gallery-more-card:nth-child(1) {
        grid-column: span 7 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }

    .gallery-series:nth-child(odd) .series-gallery__grid .gallery-card:nth-child(2),
    .gallery-series:nth-child(even) .series-gallery__grid .gallery-card:nth-child(2),
    .gallery-series__extra-grid .gallery-more-card:nth-child(2) {
        grid-column: span 5 !important;
        width: 100%;
        height: clamp(390px, 27vw, 500px);
        aspect-ratio: auto;
    }

    .series-gallery__grid .gallery-card:nth-child(5),
    .gallery-series__extra-grid .gallery-more-card:nth-child(5) {
        grid-column: span 4 !important;
        width: 100%;
        justify-self: stretch;
    }
}

.series-gallery__grid .gallery-card img,
.series-gallery__grid .gallery-card:nth-child(1) img,
.series-gallery__grid .gallery-card:nth-child(2) img,
.gallery-series__extra-grid .gallery-more-card img {
    width: 100%;
    height: 100%;
    padding: 0;
    background: #f4f2ed;
    object-fit: cover;
    object-position: center;
}

.series-gallery__grid .gallery-card:hover img,
.series-gallery__grid .gallery-card:focus-visible img,
.gallery-series__extra-grid .gallery-more-card:hover img,
.gallery-series__extra-grid .gallery-more-card:focus-visible img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.04);
    animation: none;
}

/* Responsive Contact map styles. */
@media (max-width: 1080px) {
    .page-hero--contact {
        min-height: clamp(640px, 82vw, 800px);
        place-items: start;
        background: #f4efe7;
    }

    .page-hero--contact .page-hero__media {
        background-color: #f4efe7;
        background-position: right bottom;
        background-repeat: no-repeat;
        /* Component styles. */
        background-size: 142% auto;
        transform: none;
    }

    .page-hero--contact:hover .page-hero__media {
        transform: none;
    }

    .page-hero--contact .page-hero__media::after {
        display: block;
        background: linear-gradient(
            180deg,
            rgba(8, 23, 40, 0.96) 0%,
            rgba(8, 23, 40, 0.86) 30%,
            rgba(8, 23, 40, 0.28) 54%,
            transparent 74%
        );
    }

    /* Contact page and warehouse map styles. */
    .page-hero--contact .page-hero__content--contact-copy {
        position: relative;
        width: min(100% - 34px, var(--site-width));
        height: auto;
        margin: 0 auto;
        padding: calc(var(--nav-height) + 70px) 0 300px;
        overflow: visible;
        clip: auto;
        clip-path: none;
        white-space: normal;
    }
}

/* Responsive styles for smaller screens. */

.footer-location--coming-soon em {
    display: inline-flex;
    width: fit-content;
    margin-top: 10px;
    padding: 5px 10px;
    border: 1px solid rgba(215, 178, 105, 0.55);
    border-radius: 999px;
    color: #e4c47f;
    font-size: 0.69rem;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.location-card--coming-soon {
    grid-column: 1 / -1;
    width: min(720px, 100%);
    justify-self: center;
    border-color: rgba(201, 160, 82, 0.52);
}

.location-card__media--poster {
    min-height: 0;
    aspect-ratio: 1920 / 820;
    background: #f4efe7;
}

.location-card__media--poster img {
    padding: 10px;
    object-fit: contain;
}

.page-hero--gallery .page-hero__content,
.page-hero--gallery .page-hero__content h1 {
    color: #ffffff;
    text-shadow: 0 3px 24px rgba(3, 18, 31, 0.58);
}

.page-hero--gallery .page-hero__content .eyebrow {
    color: #efd28f;
}

.page-hero--gallery .page-hero__content p {
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 1080px) {
    .site-nav {
        max-height: 100dvh;
        padding-bottom: calc(42px + env(safe-area-inset-bottom));
        overscroll-behavior: contain;
    }

    .site-nav .dealer-menu,
    .site-nav .dealer-menu__panel {
        flex: 0 0 auto;
    }

    .site-nav .dealer-menu__panel {
        overflow: visible;
    }
}

@media (max-width: 700px) {
    .hero.is-poster-active {
        height: clamp(280px, calc((100vw - 28px) * 0.427 + 92px), 390px);
        min-height: clamp(280px, calc((100vw - 28px) * 0.427 + 92px), 390px);
    }

    .hero.is-poster-active .hero__slides {
        bottom: 68px;
    }

    .hero.is-poster-active .hero__slide--poster img,
    .hero.is-poster-active .hero__slide--poster.is-active img {
        width: 100%;
        height: 100%;
        padding: 6px;
        object-fit: contain;
    }

    .hero.is-poster-active .hero-carousel {
        bottom: 14px;
    }

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

    .location-card--coming-soon {
        grid-column: auto;
        width: 100%;
    }

    .location-card__details div {
        grid-template-columns: 64px minmax(0, 1fr);
    }

    .location-card__details dd,
    .location-card__details a {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}
