/*
|--------------------------------------------------------------------------
| Royal Servicess LLC
| Public Homepage — Onyx Elegance
|--------------------------------------------------------------------------
|
| FINAL-HOMEPAGE-LAYOUT-2026
|
| Homepage-only stylesheet.
| Designed around transparent / cutout vehicle PNG artwork.
|
|--------------------------------------------------------------------------
*/


/* ==========================================================================
   01. TOKENS
   ========================================================================== */

:root {
    --rh-black: #070708;
    --rh-black-2: #0a0a0b;
    --rh-panel: #0f0f10;
    --rh-panel-2: #131314;
    --rh-panel-3: #181819;

    --rh-line: rgba(255, 255, 255, 0.075);
    --rh-line-strong: rgba(255, 255, 255, 0.13);

    --rh-text: #f4f1e9;
    --rh-text-soft: #c7c2b8;
    --rh-muted: #89857d;
    --rh-muted-2: #625f59;

    --rh-gold: #c8a55b;
    --rh-gold-soft: #e2ca94;
    --rh-gold-pale: #f0dfb5;
    --rh-gold-dark: #866a34;

    --rh-serif:
        Georgia,
        "Times New Roman",
        Times,
        serif;

    --rh-sans:
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    --rh-container: 1240px;

    --rh-radius-sm: 12px;
    --rh-radius-md: 18px;
    --rh-radius-lg: 28px;

    --rh-shadow:
        0 28px 80px rgba(0, 0, 0, 0.34);

    --rh-transition:
        220ms cubic-bezier(.2, .7, .3, 1);
}


/* ==========================================================================
   02. BASE
   ========================================================================== */

html {
    scroll-behavior: smooth;
}

body.royal-home {
    margin: 0;
    min-width: 320px;

    color: var(--rh-text);

    background:
        radial-gradient(
            circle at 18% 0%,
            rgba(200, 165, 91, 0.045),
            transparent 28%
        ),
        var(--rh-black);

    font-family: var(--rh-sans);
    line-height: 1.55;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.royal-home a {
    color: inherit;
}

.royal-home ::selection {
    color: #080808;
    background: var(--rh-gold);
}

.home-container {
    width: min(
        calc(100% - 48px),
        var(--rh-container)
    );

    margin-inline: auto;
}

.home-section {
    position: relative;

    padding:
        clamp(78px, 7vw, 112px)
        0;
}

.home-overline {
    display: block;

    color: var(--rh-gold);

    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1.3;

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

.home-section-index {
    color: rgba(200, 165, 91, 0.52);

    font-family: var(--rh-serif);
    font-size: 0.8rem;
}

.home-skip-link {
    position: fixed;
    z-index: 9999;

    top: 12px;
    left: 12px;

    padding: 10px 15px;

    color: #080808;
    background: var(--rh-gold-soft);

    border-radius: 8px;

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

    text-decoration: none;

    transform: translateY(-180%);

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

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


/* ==========================================================================
   03. HEADER
   ========================================================================== */

.home-header {
    position: sticky;
    z-index: 1000;

    top: 0;

    border-bottom: 1px solid var(--rh-line);

    background:
        rgba(7, 7, 8, 0.92);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.home-header__inner {
    min-height: 72px;

    display: grid;
    grid-template-columns:
        minmax(220px, 1fr)
        auto
        minmax(220px, 1fr);

    align-items: center;
    gap: 28px;
}

.home-brand {
    width: fit-content;

    display: inline-flex;
    align-items: center;
    gap: 11px;

    text-decoration: none;
}

.home-brand__mark {
    width: 39px;
    height: 39px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    color: var(--rh-gold-soft);

    border: 1px solid rgba(200, 165, 91, 0.43);
    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            rgba(240, 223, 181, 0.13),
            transparent 62%
        );
}

.home-brand__mark-inner {
    font-family: var(--rh-serif);
    font-size: 0.76rem;

    letter-spacing: 0.07em;
}

.home-brand__copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.home-brand__name {
    color: var(--rh-text);

    font-family: var(--rh-serif);
    font-size: 0.98rem;
    line-height: 1.1;
}

.home-brand__descriptor {
    color: var(--rh-muted);

    font-size: 0.54rem;
    font-weight: 800;

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

.home-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 29px;
}

.home-nav a {
    position: relative;

    padding: 7px 0;

    color: #aaa69e;

    font-size: 0.65rem;
    font-weight: 800;

    letter-spacing: 0.095em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        color var(--rh-transition);
}

.home-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: 0;

    height: 1px;

    background: var(--rh-gold);

    transition:
        right var(--rh-transition);
}

.home-nav a:hover {
    color: var(--rh-text);
}

.home-nav a:hover::after {
    right: 0;
}

.home-header__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.home-header__account {
    color: #aaa69e;

    font-size: 0.65rem;
    font-weight: 800;

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

    transition:
        color var(--rh-transition);
}

.home-header__account:hover {
    color: var(--rh-gold-soft);
}


/* ==========================================================================
   04. BUTTONS
   ========================================================================== */

.home-button {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 17px;

    padding:
        0
        23px;

    border: 1px solid transparent;
    border-radius: 999px;

    font-size: 0.66rem;
    font-weight: 900;

    letter-spacing: 0.105em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        transform var(--rh-transition),
        background var(--rh-transition),
        border-color var(--rh-transition),
        color var(--rh-transition),
        box-shadow var(--rh-transition);
}

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

.home-button--header {
    min-height: 38px;

    padding-inline: 18px;

    color: #080808;
    background: var(--rh-gold);

    border-color: var(--rh-gold);
}

.home-button--header:hover {
    background: var(--rh-gold-soft);
}

.home-button--primary {
    color: #080808;

    background:
        linear-gradient(
            135deg,
            var(--rh-gold-pale),
            var(--rh-gold)
        );

    border-color:
        rgba(240, 223, 181, 0.5);

    box-shadow:
        0 12px 32px rgba(200, 165, 91, 0.13);
}

.home-button--primary:hover {
    background:
        linear-gradient(
            135deg,
            #f4e6c3,
            #d5b66f
        );

    box-shadow:
        0 17px 42px rgba(200, 165, 91, 0.2);
}

.home-button--secondary {
    color: var(--rh-text);

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

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

.home-button--secondary:hover {
    background:
        rgba(200, 165, 91, 0.055);

    border-color:
        rgba(200, 165, 91, 0.4);
}

.home-button__arrow {
    font-size: 1rem;

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

.home-button:hover
.home-button__arrow {
    transform: translateX(4px);
}

.home-icon-link {
    width: 46px;
    height: 46px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    color: var(--rh-gold-soft);

    border: 1px solid rgba(200, 165, 91, 0.28);
    border-radius: 50%;

    background:
        rgba(200, 165, 91, 0.045);

    font-size: 1.05rem;

    text-decoration: none;

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

.home-icon-link:hover {
    background:
        rgba(200, 165, 91, 0.1);

    border-color: var(--rh-gold);

    transform: rotate(6deg);
}

.home-button:focus-visible,
.home-nav a:focus-visible,
.home-header__account:focus-visible,
.home-icon-link:focus-visible,
.home-text-link:focus-visible,
.home-quickbar__action:focus-visible,
.home-vehicle-card a:focus-visible {
    outline:
        2px solid
        var(--rh-gold-soft);

    outline-offset: 4px;
}


/* ==========================================================================
   05. HERO
   ========================================================================== */

.home-hero {
    position: relative;

    overflow: hidden;

    padding:
        clamp(55px, 6vw, 82px)
        0
        26px;

    background:
        linear-gradient(
            180deg,
            #080809,
            #0a0a0b
        );
}

.home-hero::before {
    content: "";

    position: absolute;

    width: 720px;
    height: 720px;

    top: -420px;
    right: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(200, 165, 91, 0.11),
            transparent 66%
        );

    pointer-events: none;
}

.home-hero__glow--two {
    display: none;
}

.home-hero__grid {
    position: relative;
    z-index: 2;

    min-height: 560px;

    display: grid;
    grid-template-columns:
        minmax(0, 0.92fr)
        minmax(440px, 0.82fr);

    align-items: center;
    gap: clamp(50px, 6vw, 90px);
}

.home-hero__content {
    max-width: 650px;
}

.home-kicker {
    margin-bottom: 23px;

    display: flex;
    align-items: center;
    gap: 12px;

    color: var(--rh-gold-soft);

    font-size: 0.65rem;
    font-weight: 800;

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

.home-kicker__line {
    width: 38px;
    height: 1px;

    background: var(--rh-gold);
}

.home-hero__title {
    margin: 0;

    max-width: 650px;

    color: var(--rh-text);

    font-family: var(--rh-serif);
    font-size:
        clamp(
            3.7rem,
            5.8vw,
            6.15rem
        );

    font-weight: 400;
    line-height: 0.91;

    letter-spacing: -0.053em;
}

.home-hero__title span {
    display: block;

    margin-top: 0.14em;

    color: var(--rh-gold-soft);

    font-style: italic;
}

.home-hero__lead {
    max-width: 570px;

    margin:
        29px
        0
        0;

    color: #aaa69d;

    font-size: 0.93rem;
    line-height: 1.78;
}

.home-hero__actions {
    margin-top: 31px;

    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-hero__trust {
    margin-top: 37px;

    padding-top: 20px;

    display: flex;
    flex-wrap: wrap;
    gap: 13px 24px;

    border-top: 1px solid var(--rh-line);
}

.home-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #76736d;

    font-size: 0.61rem;
    font-weight: 800;

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

.home-hero__trust-icon {
    width: 21px;
    height: 21px;

    display: grid;
    place-items: center;

    color: var(--rh-gold);

    border: 1px solid rgba(200, 165, 91, 0.24);
    border-radius: 50%;

    font-family: var(--rh-serif);
    font-size: 0.51rem;
}

.home-hero__visual {
    position: relative;

    width: 100%;
    max-width: 570px;

    justify-self: end;
}

.home-hero__visual-frame {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--rh-line-strong);
    border-radius: 24px;

    background:
        radial-gradient(
            ellipse at 50% 52%,
            rgba(200, 165, 91, 0.08),
            transparent 53%
        ),
        linear-gradient(
            145deg,
            #151516,
            #0c0c0d
        );

    box-shadow: var(--rh-shadow);
}

.home-hero__visual-top {
    min-height: 48px;

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

    padding:
        0
        19px;

    color: #77736d;

    border-bottom: 1px solid var(--rh-line);

    font-size: 0.53rem;
    font-weight: 900;

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

.home-hero__vehicle {
    position: relative;

    height: 325px;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at 50% 70%,
            rgba(200, 165, 91, 0.115),
            transparent 43%
        );
}

.home-hero__vehicle::after {
    content: "";

    position: absolute;

    left: 15%;
    right: 15%;
    bottom: 23px;

    height: 28px;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.48);

    filter: blur(15px);

    pointer-events: none;
}

.vehicle-media--home-hero {
    width: 100% !important;
    height: 325px !important;
    min-height: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
}

.vehicle-media--home-hero
.vehicle-media__image {
    position: relative;
    z-index: 2;

    width: 100% !important;
    height: 100% !important;

    padding:
        28px
        28px
        20px;

    object-fit: contain !important;
    object-position: center !important;

    filter:
        drop-shadow(
            0 18px 18px
            rgba(0, 0, 0, 0.36)
        );

    transition:
        transform 650ms
        cubic-bezier(.2, .7, .3, 1);
}

.home-hero__visual-frame:hover
.vehicle-media--home-hero
.vehicle-media__image {
    transform: scale(1.035);
}

.home-hero__vehicle-info {
    min-height: 88px;

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

    padding:
        17px
        20px;

    border-top: 1px solid var(--rh-line);
}

.home-hero__vehicle-info h2 {
    margin:
        5px
        0
        0;

    font-family: var(--rh-serif);
    font-size:
        clamp(
            1.5rem,
            2.1vw,
            2rem
        );

    font-weight: 400;
    line-height: 1.1;
}

.home-hero__floating-card {
    position: absolute;
    z-index: 6;

    left: -35px;
    bottom: 48px;

    width: 190px;

    padding: 17px 18px;

    display: flex;
    flex-direction: column;

    border: 1px solid rgba(200, 165, 91, 0.22);
    border-radius: 15px;

    background:
        rgba(10, 10, 11, 0.91);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(14px);
}

.home-hero__floating-label {
    margin-bottom: 7px;

    color: var(--rh-gold);

    font-size: 0.53rem;
    font-weight: 900;

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

.home-hero__floating-card strong {
    font-family: var(--rh-serif);
    font-size: 1.12rem;
    font-weight: 400;
}

.home-hero__floating-card
> span:last-child {
    margin-top: 6px;

    color: #7f7b74;

    font-size: 0.66rem;
    line-height: 1.5;
}

.home-hero__empty {
    min-height: 325px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 40px;
}

.home-hero__empty h2 {
    margin:
        10px
        0;

    font-family: var(--rh-serif);
    font-size: 2rem;
    font-weight: 400;
}

.home-hero__empty p {
    margin: 0;

    color: var(--rh-muted);
}

.home-hero__footer {
    position: relative;
    z-index: 2;

    margin-top: 24px;
    padding-top: 18px;

    display: grid;
    grid-template-columns:
        auto
        minmax(30px, 1fr)
        auto
        minmax(30px, 1fr)
        auto;

    align-items: center;
    gap: 17px;

    color: #4f4c48;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.045);

    font-size: 0.51rem;
    font-weight: 900;

    letter-spacing: 0.16em;
}

.home-hero__footer-line {
    height: 1px;

    background:
        rgba(255, 255, 255, 0.045);
}


/* ==========================================================================
   06. QUICK BAR
   ========================================================================== */

.home-quickbar {
    border-top: 1px solid var(--rh-line);
    border-bottom: 1px solid var(--rh-line);

    background:
        #0c0c0d;
}

.home-quickbar__grid {
    min-height: 102px;

    display: grid;
    grid-template-columns:
        1.18fr
        repeat(3, 1fr)
        112px;
}

.home-quickbar__intro,
.home-quickbar__item,
.home-quickbar__action {
    padding:
        20px
        24px;

    border-right: 1px solid var(--rh-line);
}

.home-quickbar__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
}

.home-quickbar__intro strong {
    font-family: var(--rh-serif);
    font-size: 1.22rem;
    font-weight: 400;
}

.home-quickbar__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-quickbar__number {
    color: var(--rh-gold);

    font-family: var(--rh-serif);
    font-size: 0.82rem;
}

.home-quickbar__item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-quickbar__item strong {
    color: #d1cdc4;

    font-size: 0.7rem;
}

.home-quickbar__item div span {
    color: #6f6b65;

    font-size: 0.6rem;
}

.home-quickbar__action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    color: #090909;
    background: var(--rh-gold);

    border-right: 0;

    font-size: 0.61rem;
    font-weight: 900;

    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;

    transition:
        background var(--rh-transition);
}

.home-quickbar__action:hover {
    background: var(--rh-gold-soft);
}


/* ==========================================================================
   07. SECTION HEADINGS
   ========================================================================== */

.home-section-heading {
    display: grid;
    grid-template-columns:
        165px
        minmax(0, 1fr);

    gap:
        clamp(
            45px,
            7vw,
            95px
        );

    margin-bottom:
        clamp(
            42px,
            5vw,
            66px
        );
}

.home-section-heading__side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.home-section-heading__main {
    max-width: 800px;
}

.home-section-heading__main h2,
.home-atlanta__content h2,
.home-faq__intro h2 {
    margin: 0;

    color: var(--rh-text);

    font-family: var(--rh-serif);
    font-size:
        clamp(
            2.65rem,
            4.4vw,
            4.6rem
        );

    font-weight: 400;
    line-height: 0.98;

    letter-spacing: -0.042em;
}

.home-section-heading__main h2 span,
.home-atlanta__content h2 span,
.home-faq__intro h2 span {
    display: block;

    color: var(--rh-gold-soft);

    font-style: italic;
}

.home-section-heading__main > p {
    max-width: 620px;

    margin:
        20px
        0
        0;

    color: #8b877f;

    font-size: 0.86rem;
    line-height: 1.75;
}


/* ==========================================================================
   08. EXPERIENCE
   ========================================================================== */

.home-experience {
    background:
        #0b0b0c;
}

.home-experience__grid {
    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.home-feature-card {
    min-height: 285px;

    display: flex;
    flex-direction: column;

    padding:
        29px
        30px;

    border: 1px solid var(--rh-line);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #111112,
            #0e0e0f
        );

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

.home-feature-card:hover {
    border-color:
        rgba(200, 165, 91, 0.23);

    background:
        #121213;

    transform: translateY(-3px);
}

.home-feature-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    color: var(--rh-gold);
}

.home-feature-card__number {
    font-family: var(--rh-serif);
    font-size: 0.73rem;
}

.home-feature-card__symbol {
    color:
        rgba(200, 165, 91, 0.54);

    font-size: 1.55rem;
}

.home-feature-card h3 {
    max-width: 280px;

    margin:
        57px
        0
        14px;

    font-family: var(--rh-serif);
    font-size:
        clamp(
            1.55rem,
            2vw,
            2rem
        );

    font-weight: 400;
    line-height: 1.1;
}

.home-feature-card p {
    max-width: 310px;

    margin:
        0
        0
        24px;

    color: #7e7a73;

    font-size: 0.77rem;
    line-height: 1.68;
}

.home-feature-card__line {
    width: 39px;
    height: 1px;

    margin-top: auto;

    background: var(--rh-gold);

    transition:
        width 400ms ease;
}

.home-feature-card:hover
.home-feature-card__line {
    width: 100%;
}


/* ==========================================================================
   09. FLEET
   ========================================================================== */

.home-fleet {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(200, 165, 91, 0.035),
            transparent 30%
        ),
        #09090a;
}

.home-fleet::before {
    content: "ROYAL";

    position: absolute;

    top: 35px;
    right: -18px;

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

    font-family: var(--rh-serif);
    font-size: 15rem;
    line-height: 0.8;

    pointer-events: none;
}

.home-fleet__grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.home-vehicle-card {
    position: relative;

    overflow: hidden;

    border: 1px solid var(--rh-line);
    border-radius: 20px;

    background:
        linear-gradient(
            150deg,
            #111112,
            #0d0d0e
        );

    box-shadow:
        0 15px 38px
        rgba(0, 0, 0, 0.15);

    transition:
        transform var(--rh-transition),
        border-color var(--rh-transition),
        box-shadow var(--rh-transition);
}

.home-vehicle-card:hover {
    border-color:
        rgba(200, 165, 91, 0.25);

    box-shadow:
        0 24px 55px
        rgba(0, 0, 0, 0.26);

    transform: translateY(-4px);
}

.home-vehicle-card__media {
    position: relative;

    height: 285px;

    overflow: hidden;

    border-bottom: 1px solid var(--rh-line);

    background:
        radial-gradient(
            ellipse at 50% 78%,
            rgba(200, 165, 91, 0.11),
            transparent 44%
        ),
        linear-gradient(
            180deg,
            #151516,
            #101011
        );
}

.home-vehicle-card__media::after {
    content: "";

    position: absolute;

    z-index: 1;

    left: 18%;
    right: 18%;
    bottom: 26px;

    height: 22px;

    border-radius: 50%;

    background:
        rgba(0, 0, 0, 0.46);

    filter: blur(13px);

    pointer-events: none;
}

.home-vehicle-card__badges {
    position: absolute;
    z-index: 5;

    top: 17px;
    left: 17px;
    right: 17px;

    display: flex;
    justify-content: space-between;

    pointer-events: none;
}

.home-vehicle-card__badges span {
    padding:
        6px
        9px;

    color: #bbb7ae;

    background:
        rgba(7, 7, 8, 0.64);

    border:
        1px solid
        rgba(255, 255, 255, 0.1);

    border-radius: 999px;

    font-size: 0.5rem;
    font-weight: 900;

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

    backdrop-filter: blur(10px);
}

.vehicle-media--home-card {
    width: 100% !important;
    height: 285px !important;
    min-height: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: transparent !important;
}

.vehicle-media--home-card
.vehicle-media__image {
    position: relative;
    z-index: 2;

    width: 100% !important;
    height: 100% !important;

    padding:
        30px
        38px
        20px;

    object-fit: contain !important;
    object-position: center !important;

    filter:
        drop-shadow(
            0 17px 15px
            rgba(0, 0, 0, 0.38)
        );

    transition:
        transform 600ms
        cubic-bezier(.2, .7, .3, 1);
}

.home-vehicle-card:hover
.vehicle-media--home-card
.vehicle-media__image {
    transform: scale(1.045);
}

.home-vehicle-card__media-link {
    position: absolute;
    z-index: 6;

    right: 17px;
    bottom: 17px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    color: #090909;
    background: var(--rh-gold-soft);

    border-radius: 50%;

    font-size: 1rem;

    text-decoration: none;

    transition:
        transform var(--rh-transition),
        background var(--rh-transition);
}

.home-vehicle-card__media-link:hover {
    background: var(--rh-gold-pale);

    transform:
        rotate(7deg)
        scale(1.04);
}

.home-vehicle-card__body {
    padding:
        24px
        25px
        25px;
}

.home-vehicle-card__heading h3 {
    margin:
        7px
        0
        0;

    font-family: var(--rh-serif);
    font-size:
        clamp(
            1.55rem,
            2.3vw,
            2.15rem
        );

    font-weight: 400;
    line-height: 1.08;
}

.home-vehicle-card__body > p {
    margin:
        14px
        0
        21px;

    color: #7f7b74;

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

.home-vehicle-card__footer {
    padding-top: 17px;

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

    border-top: 1px solid var(--rh-line);
}

.home-vehicle-card__footer > span {
    color: #5e5b56;

    font-size: 0.56rem;
    font-weight: 700;
}

.home-vehicle-card__footer a {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: var(--rh-gold-soft);

    font-size: 0.58rem;
    font-weight: 900;

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

.home-vehicle-card__footer a span {
    transition:
        transform var(--rh-transition);
}

.home-vehicle-card__footer a:hover span {
    transform: translateX(4px);
}

.home-fleet-empty {
    padding: 45px;

    border: 1px solid var(--rh-line);
    border-radius: 18px;

    background: var(--rh-panel);
}

.home-fleet__cta {
    margin-top: 21px;

    padding:
        27px
        30px;

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

    border:
        1px solid
        rgba(200, 165, 91, 0.17);

    border-radius: 18px;

    background:
        linear-gradient(
            110deg,
            rgba(200, 165, 91, 0.065),
            rgba(255, 255, 255, 0.012)
        );
}

.home-fleet__cta h3 {
    max-width: 600px;

    margin:
        7px
        0
        0;

    font-family: var(--rh-serif);
    font-size:
        clamp(
            1.55rem,
            2.4vw,
            2.3rem
        );

    font-weight: 400;
    line-height: 1.1;
}


/* ==========================================================================
   10. PROCESS
   ========================================================================== */

.home-process {
    background: #0b0b0c;
}

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

    gap: 13px;
}

.home-process-step {
    min-height: 245px;

    padding:
        26px
        25px;

    border: 1px solid var(--rh-line);
    border-radius: 16px;

    background:
        #101011;

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

.home-process-step:hover {
    background: #131314;

    border-color:
        rgba(200, 165, 91, 0.19);

    transform: translateY(-3px);
}

.home-process-step__head {
    display: flex;
    justify-content: space-between;

    color: var(--rh-gold);
}

.home-process-step__head
span:first-child {
    font-family: var(--rh-serif);
    font-size: 0.73rem;
}

.home-process-step__head
span:last-child {
    color: #52504c;
}

.home-process-step h3 {
    margin:
        58px
        0
        11px;

    font-family: var(--rh-serif);
    font-size: 1.65rem;
    font-weight: 400;
}

.home-process-step p {
    margin: 0;

    color: #79756f;

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

.home-process__note {
    margin-top: 15px;

    padding:
        17px
        20px;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    border:
        1px solid
        rgba(200, 165, 91, 0.15);

    border-radius: 13px;

    background:
        rgba(200, 165, 91, 0.035);
}

.home-process__note-icon {
    width: 24px;
    height: 24px;

    flex: 0 0 auto;

    display: grid;
    place-items: center;

    color: #080808;
    background: var(--rh-gold);

    border-radius: 50%;

    font-size: 0.64rem;
    font-weight: 900;
}

.home-process__note p {
    margin: 1px 0 0;

    color: #99958c;

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

.home-process__note strong {
    color: #d1cdc3;
}


/* ==========================================================================
   11. ATLANTA
   ========================================================================== */

.home-atlanta {
    overflow: hidden;

    background:
        radial-gradient(
            circle at 78% 48%,
            rgba(200, 165, 91, 0.07),
            transparent 31%
        ),
        #09090a;
}

.home-atlanta__grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(430px, 0.82fr);

    align-items: center;
    gap:
        clamp(
            60px,
            8vw,
            110px
        );
}

.home-atlanta__content {
    max-width: 590px;
}

.home-atlanta__content
.home-overline {
    margin-top: 14px;
}

.home-atlanta__content h2 {
    margin-top: 20px;
}

.home-atlanta__lead {
    margin:
        23px
        0
        0;

    color: #8b877f;

    font-size: 0.86rem;
    line-height: 1.78;
}

.home-atlanta__locations {
    margin:
        27px
        0;

    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.home-atlanta__locations span {
    padding:
        7px
        10px;

    color: #99958d;

    border: 1px solid var(--rh-line);
    border-radius: 999px;

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

    font-size: 0.55rem;
    font-weight: 800;

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

.home-atlanta__visual {
    position: relative;

    min-height: 445px;

    display: grid;
    place-items: center;
}

.home-atlanta__map {
    position: relative;

    width:
        min(
            100%,
            430px
        );

    aspect-ratio: 1;

    display: grid;
    place-items: center;
}

.home-atlanta__map::before,
.home-atlanta__map::after {
    content: "";

    position: absolute;

    background:
        rgba(255, 255, 255, 0.045);
}

.home-atlanta__map::before {
    width: 1px;
    height: 100%;
}

.home-atlanta__map::after {
    width: 100%;
    height: 1px;
}

.home-atlanta__map-ring {
    position: absolute;

    border:
        1px solid
        rgba(200, 165, 91, 0.15);

    border-radius: 50%;
}

.home-atlanta__map-ring--1 {
    width: 31%;
    height: 31%;
}

.home-atlanta__map-ring--2 {
    width: 61%;
    height: 61%;
}

.home-atlanta__map-ring--3 {
    width: 91%;
    height: 91%;
}

.home-atlanta__map-center {
    position: relative;
    z-index: 4;

    width: 91px;
    height: 91px;

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

    border:
        1px solid
        rgba(200, 165, 91, 0.46);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #191713,
            #0e0e0f
        );

    box-shadow:
        0 0 60px
        rgba(200, 165, 91, 0.08);
}

.home-atlanta__map-center strong {
    color: var(--rh-gold-soft);

    font-family: var(--rh-serif);
    font-size: 1.27rem;
    font-weight: 400;
}

.home-atlanta__map-center small {
    margin-top: 3px;

    color: #6a6660;

    font-size: 0.47rem;
    font-weight: 900;

    letter-spacing: 0.13em;
}

.home-atlanta__map-point {
    position: absolute;
    z-index: 4;

    display: flex;
    align-items: center;
    gap: 7px;

    color: #7f7b74;

    font-size: 0.53rem;
    font-weight: 800;

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

.home-atlanta__map-point i {
    width: 5px;
    height: 5px;

    display: block;

    background: var(--rh-gold);

    border-radius: 50%;

    box-shadow:
        0 0 0 4px
        rgba(200, 165, 91, 0.07);
}

.home-atlanta__map-point--1 {
    top: 23%;
    right: 14%;
}

.home-atlanta__map-point--2 {
    right: 3%;
    bottom: 30%;
}

.home-atlanta__map-point--3 {
    top: 12%;
    left: 18%;
}

.home-atlanta__map-point--4 {
    left: 5%;
    bottom: 24%;
}

.home-atlanta__coordinate {
    position: absolute;

    left: 50%;
    bottom: 4px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: #45433f;

    font-family: var(--rh-serif);
    font-size: 0.56rem;

    letter-spacing: 0.11em;

    transform: translateX(-50%);
}

.home-atlanta__coordinate span {
    width: 21px;
    height: 1px;

    background: #45433f;
}


/* ==========================================================================
   12. STANDARDS
   ========================================================================== */

.home-standards {
    background: #0b0b0c;
}

.home-standards__grid {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 13px;
}

.home-standard {
    min-height: 160px;

    padding:
        26px
        27px;

    display: grid;
    grid-template-columns:
        40px
        1fr;

    gap: 19px;

    border: 1px solid var(--rh-line);
    border-radius: 15px;

    background:
        #101011;
}

.home-standard__number {
    width: 38px;
    height: 38px;

    display: grid;
    place-items: center;

    color: var(--rh-gold);

    border:
        1px solid
        rgba(200, 165, 91, 0.22);

    border-radius: 50%;

    font-family: var(--rh-serif);
    font-size: 0.7rem;
}

.home-standard h3 {
    margin:
        2px
        0
        9px;

    font-family: var(--rh-serif);
    font-size:
        clamp(
            1.3rem,
            1.8vw,
            1.7rem
        );

    font-weight: 400;
}

.home-standard p {
    max-width: 440px;

    margin: 0;

    color: #78746e;

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


/* ==========================================================================
   13. FAQ
   ========================================================================== */

.home-faq {
    background:
        #09090a;
}

.home-faq__layout {
    display: grid;
    grid-template-columns:
        minmax(250px, 0.4fr)
        minmax(0, 1fr);

    gap:
        clamp(
            55px,
            8vw,
            105px
        );
}

.home-faq__intro {
    height: fit-content;
}

.home-faq__intro
.home-overline {
    margin-top: 14px;
}

.home-faq__intro h2 {
    margin-top: 20px;
}

.home-faq__intro p {
    max-width: 350px;

    margin:
        21px
        0;

    color: #817d76;

    font-size: 0.78rem;
    line-height: 1.72;
}

.home-text-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;

    color: var(--rh-gold-soft);

    font-size: 0.61rem;
    font-weight: 900;

    letter-spacing: 0.085em;
    text-decoration: none;
    text-transform: uppercase;
}

.home-faq__items {
    border-top: 1px solid var(--rh-line);
}

.home-faq-item {
    border-bottom: 1px solid var(--rh-line);
}

.home-faq-item summary {
    min-height: 72px;

    padding:
        19px
        2px;

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

    color: #d2cec5;

    cursor: pointer;
    list-style: none;

    font-family: var(--rh-serif);
    font-size:
        clamp(
            1rem,
            1.6vw,
            1.28rem
        );

    line-height: 1.35;
}

.home-faq-item
summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary i {
    position: relative;

    width: 25px;
    height: 25px;

    flex: 0 0 auto;

    border:
        1px solid
        rgba(200, 165, 91, 0.24);

    border-radius: 50%;
}

.home-faq-item summary i::before,
.home-faq-item summary i::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 8px;
    height: 1px;

    background: var(--rh-gold);

    transform:
        translate(-50%, -50%);
}

.home-faq-item summary i::after {
    transform:
        translate(-50%, -50%)
        rotate(90deg);

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

.home-faq-item[open]
summary {
    color: var(--rh-gold-soft);
}

.home-faq-item[open]
summary i::after {
    transform:
        translate(-50%, -50%);
}

.home-faq-item__answer {
    max-width: 690px;

    padding:
        0
        46px
        21px
        2px;
}

.home-faq-item__answer p {
    margin: 0;

    color: #79756e;

    font-size: 0.75rem;
    line-height: 1.72;
}


/* ==========================================================================
   14. FINAL CTA
   ========================================================================== */

.home-final-cta {
    padding:
        22px
        0
        92px;

    background: #09090a;
}

.home-final-cta__panel {
    position: relative;

    min-height: 390px;

    padding:
        clamp(
            40px,
            5vw,
            64px
        );

    display: flex;
    align-items: center;

    overflow: hidden;

    border:
        1px solid
        rgba(200, 165, 91, 0.19);

    border-radius: 24px;

    background:
        linear-gradient(
            125deg,
            #161511,
            #0d0d0e 58%,
            #11100e
        );

    box-shadow:
        0 27px 80px
        rgba(0, 0, 0, 0.25);
}

.home-final-cta__glow {
    position: absolute;

    width: 560px;
    height: 560px;

    right: -210px;
    top: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(200, 165, 91, 0.13),
            transparent 67%
        );
}

.home-final-cta__content {
    position: relative;
    z-index: 3;

    max-width: 720px;
}

.home-final-cta__content h2 {
    margin:
        15px
        0
        0;

    font-family: var(--rh-serif);
    font-size:
        clamp(
            3rem,
            5vw,
            5rem
        );

    font-weight: 400;
    line-height: 0.96;

    letter-spacing: -0.043em;
}

.home-final-cta__content h2 span {
    display: block;

    color: var(--rh-gold-soft);

    font-style: italic;
}

.home-final-cta__content > p {
    max-width: 560px;

    margin:
        22px
        0
        0;

    color: #8c8880;

    font-size: 0.82rem;
    line-height: 1.73;
}

.home-final-cta__actions {
    margin-top: 29px;

    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.home-final-cta__mark {
    position: absolute;

    right: 38px;
    bottom: -49px;

    color:
        rgba(200, 165, 91, 0.035);

    font-family: var(--rh-serif);
    font-size:
        clamp(
            9rem,
            18vw,
            17rem
        );

    line-height: 1;

    pointer-events: none;
}


/* ==========================================================================
   15. FOOTER
   ========================================================================== */

.home-footer {
    padding:
        43px
        0
        28px;

    border-top: 1px solid var(--rh-line);

    background: #070708;
}

.home-footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.home-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap:
        9px
        23px;
}

.home-footer__nav a {
    color: #79766f;

    font-size: 0.58rem;
    font-weight: 800;

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

    transition:
        color var(--rh-transition);
}

.home-footer__nav a:hover {
    color: var(--rh-gold-soft);
}

.home-footer__divider {
    height: 1px;

    margin:
        31px
        0
        20px;

    background: var(--rh-line);
}

.home-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 25px;

    color: #4d4a46;

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

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

.home-footer__bottom p {
    margin: 0;
}


/* ==========================================================================
   16. VEHICLE PLACEHOLDERS
   ========================================================================== */

.royal-home
.vehicle-media__placeholder {
    width: 100%;
    height: 100%;

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

    color: #77736d;

    background:
        transparent !important;
}

.royal-home
.vehicle-media__placeholder-mark {
    width: 55px;
    height: 55px;

    margin-bottom: 11px;

    display: grid;
    place-items: center;

    color: var(--rh-gold-soft);

    border:
        1px solid
        rgba(200, 165, 91, 0.27);

    border-radius: 50%;

    font-family: var(--rh-serif);
}

.royal-home
.vehicle-media__placeholder-name {
    color: #b9b5ac;

    font-family: var(--rh-serif);
    font-size: 1.05rem;
}

.royal-home
.vehicle-media__placeholder-copy {
    margin-top: 5px;

    color: #625f59;

    font-size: 0.55rem;

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


/* ==========================================================================
   17. LAPTOP
   ========================================================================== */

@media (max-width: 1180px) {

    .home-header__inner {
        grid-template-columns:
            minmax(195px, 1fr)
            auto
            minmax(180px, 1fr);

        gap: 18px;
    }

    .home-nav {
        gap: 19px;
    }

    .home-hero__grid {
        grid-template-columns:
            minmax(0, 0.96fr)
            minmax(390px, 0.8fr);

        gap: 55px;
    }

    .home-hero__floating-card {
        left: -20px;
    }

    .home-quickbar__grid {
        grid-template-columns:
            1.1fr
            repeat(3, 1fr)
            96px;
    }

    .home-quickbar__intro,
    .home-quickbar__item,
    .home-quickbar__action {
        padding-inline: 17px;
    }

    .home-atlanta__grid {
        grid-template-columns:
            minmax(0, 0.94fr)
            minmax(380px, 0.8fr);

        gap: 60px;
    }
}


/* ==========================================================================
   18. TABLET / SMALL LAPTOP
   ========================================================================== */

@media (max-width: 980px) {

    .home-container {
        width:
            min(
                calc(100% - 34px),
                var(--rh-container)
            );
    }

    .home-header__inner {
        grid-template-columns:
            1fr
            auto;

        min-height: 67px;
    }

    .home-nav {
        display: none;
    }

    .home-hero {
        padding-top: 52px;
    }

    .home-hero__grid {
        min-height: 0;

        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-hero__content {
        max-width: 760px;
    }

    .home-hero__title {
        max-width: 760px;

        font-size:
            clamp(
                3.8rem,
                9vw,
                5.8rem
            );
    }

    .home-hero__visual {
        max-width: 720px;

        justify-self: stretch;
    }

    .home-hero__vehicle {
        height: 350px;
    }

    .vehicle-media--home-hero {
        height: 350px !important;
    }

    .home-hero__floating-card {
        left: auto;
        right: 20px;
        bottom: 46px;
    }

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

    .home-quickbar__intro,
    .home-quickbar__item,
    .home-quickbar__action {
        min-height: 88px;

        border-bottom: 1px solid var(--rh-line);
    }

    .home-quickbar__action {
        min-width: 0;
    }

    .home-section-heading {
        grid-template-columns:
            135px
            minmax(0, 1fr);

        gap: 35px;
    }

    .home-experience__grid {
        grid-template-columns: 1fr;
    }

    .home-feature-card {
        min-height: 225px;
    }

    .home-feature-card h3 {
        margin-top: 38px;
    }

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

    .home-atlanta__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-atlanta__content {
        max-width: 700px;
    }

    .home-atlanta__visual {
        min-height: 430px;
    }

    .home-faq__layout {
        grid-template-columns:
            0.5fr
            1fr;

        gap: 50px;
    }
}


/* ==========================================================================
   19. MOBILE
   ========================================================================== */

@media (max-width: 720px) {

    .home-container {
        width:
            calc(100% - 26px);
    }

    .home-section {
        padding:
            68px
            0;
    }

    .home-header__inner {
        min-height: 63px;
    }

    .home-brand {
        gap: 8px;
    }

    .home-brand__mark {
        width: 35px;
        height: 35px;
    }

    .home-brand__name {
        font-size: 0.86rem;
    }

    .home-brand__descriptor {
        font-size: 0.47rem;
    }

    .home-header__account {
        display: none;
    }

    .home-button--header {
        min-height: 35px;

        padding-inline: 14px;

        font-size: 0.57rem;
    }

    .home-hero {
        padding:
            43px
            0
            19px;
    }

    .home-kicker {
        margin-bottom: 18px;

        font-size: 0.57rem;
    }

    .home-kicker__line {
        width: 28px;
    }

    .home-hero__title {
        font-size:
            clamp(
                2.95rem,
                13.5vw,
                4.45rem
            );

        line-height: 0.95;
    }

    .home-hero__lead {
        margin-top: 21px;

        font-size: 0.84rem;
        line-height: 1.67;
    }

    .home-hero__actions {
        margin-top: 25px;

        flex-direction: column;
        align-items: stretch;
    }

    .home-button {
        width: 100%;
    }

    .home-hero__trust {
        margin-top: 27px;
        padding-top: 16px;

        flex-direction: column;
        align-items: flex-start;

        gap: 9px;
    }

    .home-hero__grid {
        gap: 35px;
    }

    .home-hero__visual-frame {
        border-radius: 18px;
    }

    .home-hero__visual-top {
        min-height: 43px;

        padding-inline: 14px;
    }

    .home-hero__vehicle {
        height: 235px;
    }

    .vehicle-media--home-hero {
        height: 235px !important;
    }

    .vehicle-media--home-hero
    .vehicle-media__image {
        padding:
            19px
            20px
            14px;
    }

    .home-hero__vehicle-info {
        min-height: 76px;

        padding:
            14px
            15px;
    }

    .home-hero__vehicle-info h2 {
        font-size: 1.4rem;
    }

    .home-icon-link {
        width: 40px;
        height: 40px;
    }

    .home-hero__floating-card {
        position: relative;

        width: auto;

        right: auto;
        bottom: auto;

        margin:
            -1px
            11px
            0;

        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .home-hero__footer {
        grid-template-columns:
            1fr
            auto
            1fr;

        gap: 10px;

        font-size: 0.44rem;
    }

    .home-hero__footer
    span:nth-child(4),
    .home-hero__footer
    span:nth-child(5) {
        display: none;
    }

    .home-quickbar__grid {
        width: 100%;

        grid-template-columns: 1fr;
    }

    .home-quickbar__intro,
    .home-quickbar__item {
        min-height: 76px;

        padding:
            16px
            18px;

        border-right: 0;
    }

    .home-quickbar__action {
        min-height: 56px;

        padding:
            15px
            18px;

        border-right: 0;
    }

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

        margin-bottom: 36px;
    }

    .home-section-heading__side {
        flex-direction: row;
        align-items: center;

        gap: 13px;
    }

    .home-section-heading__main h2,
    .home-atlanta__content h2,
    .home-faq__intro h2 {
        font-size:
            clamp(
                2.45rem,
                11.4vw,
                3.65rem
            );
    }

    .home-section-heading__main > p {
        margin-top: 16px;

        font-size: 0.79rem;
    }

    .home-feature-card {
        min-height: 210px;

        padding: 23px;
    }

    .home-feature-card h3 {
        margin-top: 31px;

        font-size: 1.55rem;
    }

    .home-fleet__grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .home-vehicle-card {
        border-radius: 17px;
    }

    .home-vehicle-card__media {
        height: 235px;
    }

    .vehicle-media--home-card {
        height: 235px !important;
    }

    .vehicle-media--home-card
    .vehicle-media__image {
        padding:
            24px
            25px
            15px;
    }

    .home-vehicle-card__badges {
        top: 12px;
        left: 12px;
        right: 12px;
    }

    .home-vehicle-card__media-link {
        width: 39px;
        height: 39px;

        right: 13px;
        bottom: 13px;
    }

    .home-vehicle-card__body {
        padding: 21px;
    }

    .home-vehicle-card__footer {
        flex-direction: column;
        align-items: flex-start;

        gap: 9px;
    }

    .home-fleet__cta {
        padding: 23px;

        flex-direction: column;
        align-items: stretch;
    }

    .home-process__grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .home-process-step {
        min-height: 195px;

        padding: 22px;
    }

    .home-process-step h3 {
        margin-top: 38px;
    }

    .home-process__note {
        padding:
            15px
            16px;
    }

    .home-atlanta__grid {
        gap: 30px;
    }

    .home-atlanta__lead {
        font-size: 0.79rem;
    }

    .home-atlanta__visual {
        min-height: auto;
    }

    .home-atlanta__map {
        width: 100%;
        max-width: 390px;
    }

    .home-atlanta__map-center {
        width: 76px;
        height: 76px;
    }

    .home-atlanta__coordinate {
        bottom: -22px;
    }

    .home-standards__grid {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .home-standard {
        min-height: 145px;

        padding:
            22px
            21px;

        grid-template-columns:
            37px
            1fr;

        gap: 15px;
    }

    .home-standard__number {
        width: 35px;
        height: 35px;
    }

    .home-faq__layout {
        grid-template-columns: 1fr;

        gap: 37px;
    }

    .home-faq-item summary {
        min-height: 66px;

        padding:
            17px
            1px;

        font-size: 1.03rem;
    }

    .home-faq-item__answer {
        padding:
            0
            10px
            18px
            1px;
    }

    .home-final-cta {
        padding:
            5px
            0
            68px;
    }

    .home-final-cta__panel {
        min-height: 400px;

        padding:
            35px
            23px;

        border-radius: 19px;
    }

    .home-final-cta__content h2 {
        font-size:
            clamp(
                2.8rem,
                12vw,
                4rem
            );
    }

    .home-final-cta__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .home-final-cta__mark {
        right: -13px;
        bottom: -23px;

        font-size: 10rem;
    }

    .home-footer {
        padding-top: 36px;
    }

    .home-footer__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-footer__nav {
        justify-content: flex-start;
    }

    .home-footer__bottom {
        flex-direction: column;

        gap: 7px;
    }
}


/* ==========================================================================
   20. SMALL PHONE
   ========================================================================== */

@media (max-width: 430px) {

    .home-container {
        width:
            calc(100% - 20px);
    }

    .home-brand__descriptor {
        display: none;
    }

    .home-hero__title {
        font-size:
            clamp(
                2.65rem,
                14vw,
                3.5rem
            );
    }

    .home-hero__visual-top
    span:last-child {
        display: none;
    }

    .home-hero__vehicle {
        height: 210px;
    }

    .vehicle-media--home-hero {
        height: 210px !important;
    }

    .home-vehicle-card__media {
        height: 215px;
    }

    .vehicle-media--home-card {
        height: 215px !important;
    }

    .vehicle-media--home-card
    .vehicle-media__image {
        padding:
            22px
            17px
            14px;
    }

    .home-atlanta__map-point {
        display: none;
    }

    .home-final-cta__panel {
        padding-inline: 20px;
    }
}


/* ==========================================================================
   21. REDUCED MOTION
   ========================================================================== */

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

    html {
        scroll-behavior: auto;
    }

    .royal-home *,
    .royal-home *::before,
    .royal-home *::after {
        transition-duration:
            0.001ms !important;

        animation-duration:
            0.001ms !important;

        animation-iteration-count:
            1 !important;
    }
}


/* ==========================================================================
   22. PRINT
   ========================================================================== */

@media print {

    .home-header,
    .home-quickbar,
    .home-final-cta,
    .home-footer {
        display: none !important;
    }

    body.royal-home {
        color: #000;
        background: #fff;
    }
}


/* ==========================================================================
   SPEEDOMATRIX FOOTER CREDIT
   ========================================================================== */

.home-footer__credit {
    text-align: center;
}

.home-footer__credit a {
    position: relative;

    color: var(--rh-gold-soft);

    font-weight: 800;

    text-decoration: none;

    transition:
        color var(--rh-transition);
}

.home-footer__credit a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 100%;
    bottom: -3px;

    height: 1px;

    background: var(--rh-gold);

    transition:
        right var(--rh-transition);
}

.home-footer__credit a:hover,
.home-footer__credit a:focus-visible {
    color: var(--rh-gold-pale);
}

.home-footer__credit a:hover::after,
.home-footer__credit a:focus-visible::after {
    right: 0;
}

.home-footer__credit a:focus-visible {
    outline: 2px solid var(--rh-gold-soft);
    outline-offset: 4px;
}

@media (max-width: 720px) {
    .home-footer__credit {
        text-align: left;
    }
}
