body.pg-custom {
    --pg-ivory: #e7e4db;
    --pg-ivory-light: #f5f3ed;
    --pg-panel: #efebe2;
    --pg-white: #ffffff;
    --pg-ink: #15120e;
    --pg-ink-soft: #403a31;
    --pg-muted: #6d655a;
    --pg-gold: #a5927c;
    --pg-gold-dark: #78664f;
    --pg-gold-light: #d0c0a4;
    --pg-line: rgba(21, 18, 14, 0.14);
    --pg-line-light: rgba(21, 18, 14, 0.08);
    --pg-shadow: 0 30px 80px -35px rgba(21, 18, 14, 0.48);
    --pg-shadow-small: 0 18px 50px -28px rgba(21, 18, 14, 0.48);
    --pg-font-display: "Cinzel", serif;
    --pg-font-serif: "Cormorant Garamond", serif;
    --pg-font-script: "Pinyon Script", cursive;
    --pg-font-sans: "Jost", sans-serif;
    --pg-container: 1280px;
    --pg-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
    margin: 0;
    background: var(--pg-ivory);
    color: var(--pg-ink);
    font-family: var(--pg-font-sans);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.68;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.pg-custom *,
body.pg-custom *::before,
body.pg-custom *::after {
    box-sizing: border-box;
}

body.pg-custom img,
body.pg-custom svg,
body.pg-custom video,
body.pg-custom iframe {
    display: block;
    max-width: 100%;
}

body.pg-custom a {
    color: inherit;
    text-decoration: none;
}

body.pg-custom button,
body.pg-custom input,
body.pg-custom select,
body.pg-custom textarea {
    font: inherit;
}

body.pg-custom button,
body.pg-custom a {
    -webkit-tap-highlight-color: transparent;
}

body.pg-custom .pg-container {
    width: min(100% - 56px, var(--pg-container));
    margin-inline: auto;
}

body.pg-custom .pg-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    background: var(--pg-white);
    color: var(--pg-ink);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

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

body.pg-custom h1,
body.pg-custom h2,
body.pg-custom h3,
body.pg-custom p,
body.pg-custom ul,
body.pg-custom figure {
    margin-top: 0;
}

body.pg-custom h1,
body.pg-custom h2,
body.pg-custom h3 {
    color: var(--pg-ink);
    font-family: var(--pg-font-serif);
    font-weight: 400;
    letter-spacing: -0.015em;
    line-height: 1.06;
}

body.pg-custom h1 {
    margin-bottom: 22px;
    font-size: clamp(3rem, 5.7vw, 5.45rem);
}

body.pg-custom h2 {
    margin-bottom: 22px;
    font-size: clamp(2.35rem, 4.5vw, 3.8rem);
}

body.pg-custom h3 {
    margin-bottom: 12px;
    font-size: clamp(1.45rem, 2vw, 1.8rem);
}

body.pg-custom p {
    margin-bottom: 18px;
    color: var(--pg-muted);
}

body.pg-custom .pg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    line-height: 1.4;
    text-transform: uppercase;
}

body.pg-custom .pg-eyebrow::before {
    width: 24px;
    height: 1px;
    background: currentColor;
    content: "";
    flex: 0 0 auto;
}

body.pg-custom .pg-eyebrow--light {
    color: var(--pg-gold-light);
}

body.pg-custom .pg-script {
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-script);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

body.pg-custom .pg-lead {
    color: var(--pg-ink-soft);
    font-family: var(--pg-font-serif);
    font-size: clamp(1.25rem, 1.8vw, 1.55rem);
    font-weight: 400;
    line-height: 1.5;
}

body.pg-custom .pg-lead--light {
    color: rgba(245, 243, 237, 0.9);
}

body.pg-custom .pg-button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 15px 28px;
    border: 1px solid var(--pg-ink);
    background: var(--pg-ink);
    color: var(--pg-ivory-light);
    cursor: pointer;
    font-family: var(--pg-font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    transition: border-color 0.4s var(--pg-ease), color 0.4s var(--pg-ease), transform 0.4s var(--pg-ease);
}

body.pg-custom .pg-button::after {
    position: absolute;
    inset: 0;
    background: var(--pg-gold);
    content: "";
    transform: translateY(102%);
    transition: transform 0.4s var(--pg-ease);
}

body.pg-custom .pg-button span {
    position: relative;
    z-index: 1;
}

body.pg-custom .pg-button:hover,
body.pg-custom .pg-button:focus-visible {
    border-color: var(--pg-gold);
    color: var(--pg-ink);
}

body.pg-custom .pg-button:hover::after,
body.pg-custom .pg-button:focus-visible::after {
    transform: translateY(0);
}

body.pg-custom .pg-button--gold {
    border-color: var(--pg-gold);
    background: var(--pg-gold);
    color: var(--pg-ink);
}

body.pg-custom .pg-button--gold::after {
    background: var(--pg-ivory-light);
}

body.pg-custom .pg-button--dark {
    border-color: var(--pg-ink);
    background: var(--pg-ink);
}

body.pg-custom .pg-button--outline-dark {
    border-color: var(--pg-ink);
    background: transparent;
    color: var(--pg-ink);
}

body.pg-custom .pg-button--outline-dark::after {
    background: var(--pg-ink);
}

body.pg-custom .pg-button--outline-dark:hover,
body.pg-custom .pg-button--outline-dark:focus-visible {
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-button--nav {
    min-height: 45px;
    padding: 12px 20px;
}

body.pg-custom .pg-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.pg-custom .pg-text-link svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
    transition: transform 0.3s var(--pg-ease);
}

body.pg-custom .pg-text-link:hover svg,
body.pg-custom .pg-text-link:focus-visible svg {
    transform: translateX(5px);
}

body.pg-custom .pg-section {
    padding: clamp(78px, 9vw, 132px) 0;
}

body.pg-custom .pg-section-heading {
    margin-bottom: 58px;
}

body.pg-custom .pg-section-heading > p:last-child {
    max-width: 650px;
    margin-bottom: 0;
}

body.pg-custom .pg-section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 60px;
    align-items: end;
}

body.pg-custom .pg-section-heading--split h2,
body.pg-custom .pg-section-heading--split .pg-eyebrow {
    margin-bottom: 0;
}

body.pg-custom .pg-section-heading--split .pg-eyebrow {
    margin-bottom: 18px;
}

body.pg-custom .pg-section-heading--center {
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

body.pg-custom .pg-section-heading--center > p:last-child {
    margin-inline: auto;
}

body.pg-custom .pg-section-heading--light h2,
body.pg-custom .pg-section-heading--light p {
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-section-heading--light > p:last-child {
    color: rgba(245, 243, 237, 0.68);
}

body.pg-custom .pg-section-cta {
    margin-top: 46px;
    text-align: center;
}

body.pg-custom .pg-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background-color 0.4s var(--pg-ease), border-color 0.4s var(--pg-ease), box-shadow 0.4s var(--pg-ease);
}

body.admin-bar.pg-custom .pg-header {
    top: 32px;
}

body.pg-custom .pg-header__inner {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

body.pg-custom .pg-brand {
    position: relative;
    z-index: 2;
    display: block;
    width: min(270px, 28vw);
    min-width: 210px;
}

body.pg-custom .pg-brand__logo {
    width: 100%;
    height: 62px;
    object-fit: contain;
    object-position: left center;
    transition: opacity 0.35s var(--pg-ease), height 0.35s var(--pg-ease);
}

body.pg-custom .pg-brand__logo--black {
    position: absolute;
    inset: 0;
    opacity: 0;
}

body.pg-custom .pg-desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2vw, 34px);
}

body.pg-custom .pg-desktop-nav > a:not(.pg-button) {
    position: relative;
    color: var(--pg-ivory-light);
    font-family: var(--pg-font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

body.pg-custom .pg-desktop-nav > a:not(.pg-button)::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--pg-gold-light);
    content: "";
    transition: width 0.3s var(--pg-ease);
}

body.pg-custom .pg-desktop-nav > a:not(.pg-button):hover::after,
body.pg-custom .pg-desktop-nav > a:not(.pg-button):focus-visible::after {
    width: 100%;
}

body.pg-custom .pg-header.is-scrolled {
    border-color: var(--pg-line-light);
    background: rgba(245, 243, 237, 0.97);
    box-shadow: 0 10px 35px -25px rgba(21, 18, 14, 0.55);
    backdrop-filter: blur(12px);
}

body.pg-custom .pg-header.is-scrolled .pg-header__inner {
    min-height: 74px;
}

body.pg-custom .pg-header.is-scrolled .pg-brand__logo--white {
    opacity: 0;
}

body.pg-custom .pg-header.is-scrolled .pg-brand__logo--black {
    opacity: 1;
}

body.pg-custom .pg-header.is-scrolled .pg-brand__logo {
    height: 52px;
}

body.pg-custom .pg-header.is-scrolled .pg-desktop-nav > a:not(.pg-button) {
    color: var(--pg-ink);
}

body.pg-custom .pg-menu-toggle {
    position: relative;
    z-index: 1101;
    display: none;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
}

body.pg-custom .pg-menu-toggle span {
    position: absolute;
    width: 28px;
    height: 1.5px;
    background: var(--pg-ivory-light);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

body.pg-custom .pg-menu-toggle span:nth-child(1) { transform: translateY(-7px); }
body.pg-custom .pg-menu-toggle span:nth-child(3) { transform: translateY(7px); }
body.pg-custom .pg-header.is-scrolled .pg-menu-toggle span { background: var(--pg-ink); }

body.pg-custom .pg-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    padding: 82px 24px 42px;
    background: var(--pg-ivory-light);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.45s var(--pg-ease), transform 0.55s var(--pg-ease);
}

body.pg-custom .pg-mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

body.pg-custom .pg-mobile-menu__close {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid var(--pg-line);
    border-radius: 50%;
    background: transparent;
    color: var(--pg-ink);
    cursor: pointer;
    font-family: var(--pg-font-serif);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1;
}

body.admin-bar.pg-custom .pg-mobile-menu__close {
    top: 58px;
}

body.pg-custom .pg-mobile-menu__nav {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

body.pg-custom .pg-mobile-menu__nav a {
    min-width: 0;
    color: var(--pg-ink);
    font-family: var(--pg-font-serif);
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.15;
}

body.pg-custom .pg-mobile-menu__actions {
    display: grid;
    width: min(100%, 420px);
    gap: 12px;
    margin-top: 38px;
}

body.pg-custom.pg-menu-open {
    overflow: hidden;
}

body.pg-custom .pg-hero {
    position: relative;
    min-height: 900px;
    overflow: hidden;
    background: var(--pg-ink);
}

body.pg-custom .pg-hero__media,
body.pg-custom .pg-hero__media img,
body.pg-custom .pg-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.pg-custom .pg-hero__media img {
    object-fit: cover;
    object-position: center 38%;
}

body.pg-custom .pg-hero__overlay {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(13, 10, 7, 0.9) 0%, rgba(13, 10, 7, 0.72) 42%, rgba(13, 10, 7, 0.18) 75%, rgba(13, 10, 7, 0.12) 100%),
        linear-gradient(0deg, rgba(13, 10, 7, 0.58) 0%, rgba(13, 10, 7, 0) 55%);
}

body.pg-custom .pg-hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 900px;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 80px;
}

body.pg-custom .pg-hero__copy {
    width: min(56%, 690px);
    padding-right: 30px;
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-hero__copy h1 {
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-hero__script {
    margin: -8px 0 22px;
    color: var(--pg-gold-light);
}

body.pg-custom .pg-hero__description {
    max-width: 52ch;
    margin-bottom: 28px;
    color: rgba(245, 243, 237, 0.88);
    font-family: var(--pg-font-serif);
    font-size: clamp(1.2rem, 1.6vw, 1.45rem);
    font-weight: 400;
    line-height: 1.52;
}

body.pg-custom .pg-trust-points {
    display: grid;
    gap: 11px;
    max-width: 570px;
    margin: 0 0 32px;
    padding: 24px 0 0;
    border-top: 1px solid rgba(245, 243, 237, 0.24);
    list-style: none;
}

body.pg-custom .pg-trust-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(245, 243, 237, 0.92);
    font-size: 0.92rem;
}

body.pg-custom .pg-trust-points svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--pg-gold-light);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.pg-custom .pg-hero-form-shell {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 110px;
    padding-bottom: 80px;
    pointer-events: none;
}

body.pg-custom .pg-hero-form-card {
    width: min(40%, 455px);
    max-height: calc(100vh - 170px);
    overflow-y: auto;
    padding: 38px 34px 34px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(245, 243, 237, 0.97);
    box-shadow: var(--pg-shadow);
    pointer-events: auto;
    scrollbar-width: thin;
}

body.pg-custom .pg-hero-form-card::before {
    position: absolute;
}

body.pg-custom .pg-hero-form-card h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 2.7vw, 2.65rem);
}

body.pg-custom .pg-hero-form-card > p:not(.pg-eyebrow) {
    margin-bottom: 24px;
    font-size: 0.92rem;
}

body.pg-custom .pg-elementor-form {
    position: relative;
    z-index: 1;
}

body.pg-custom .pg-elementor-form .elementor-widget-container,
body.pg-custom .pg-elementor-form .elementor-form,
body.pg-custom .pg-elementor-form .elementor-form-fields-wrapper {
    width: 100%;
}

body.pg-custom .pg-elementor-form .elementor-field-group {
    margin-bottom: 13px;
}

body.pg-custom .pg-elementor-form .elementor-field-label {
    margin-bottom: 6px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.pg-custom .pg-elementor-form input:not([type="checkbox"]):not([type="radio"]),
body.pg-custom .pg-elementor-form select,
body.pg-custom .pg-elementor-form textarea {
    min-height: 48px;
    border: 1px solid var(--pg-line) !important;
    border-radius: 0 !important;
    background: var(--pg-white) !important;
    color: var(--pg-ink) !important;
    box-shadow: none !important;
}

body.pg-custom .pg-elementor-form textarea {
    min-height: 105px;
}

body.pg-custom .pg-elementor-form input:focus,
body.pg-custom .pg-elementor-form select:focus,
body.pg-custom .pg-elementor-form textarea:focus {
    border-color: var(--pg-gold) !important;
    outline: 2px solid transparent;
}

body.pg-custom .pg-elementor-form button[type="submit"],
body.pg-custom .pg-elementor-form .elementor-button {
    width: 100%;
    min-height: 52px;
    border: 1px solid var(--pg-ink) !important;
    border-radius: 0 !important;
    background: var(--pg-ink) !important;
    color: var(--pg-ivory-light) !important;
    font-family: var(--pg-font-display) !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.17em !important;
    text-transform: uppercase;
}

body.pg-custom .pg-elementor-form button[type="submit"]:hover,
body.pg-custom .pg-elementor-form .elementor-button:hover {
    border-color: var(--pg-gold) !important;
    background: var(--pg-gold) !important;
    color: var(--pg-ink) !important;
}

body.pg-custom .pg-trust-strip {
    overflow: hidden;
    padding: 24px 0;
    background: var(--pg-ink);
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 3vw, 40px);
    white-space: nowrap;
}

body.pg-custom .pg-trust-strip p {
    margin: 0;
    color: rgba(245, 243, 237, 0.82);
    font-family: var(--pg-font-serif);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-style: italic;
}

body.pg-custom .pg-trust-strip span {
    color: var(--pg-gold-light);
    font-size: 0.68rem;
}

body.pg-custom .pg-about {
    background: var(--pg-ivory);
}

body.pg-custom .pg-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(52px, 7vw, 104px);
    align-items: center;
}

body.pg-custom .pg-about__visual {
    position: relative;
    min-width: 0;
}

body.pg-custom .pg-about__visual::before {
    position: absolute;
    top: -22px;
    right: 28px;
    bottom: 32px;
    left: -22px;
    border: 1px solid var(--pg-gold);
    content: "";
}

body.pg-custom .pg-about__visual img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-about__badge {
    position: absolute;
    right: -34px;
    bottom: -36px;
    display: flex;
    width: 166px;
    height: 166px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pg-ink);
    box-shadow: var(--pg-shadow-small);
    color: var(--pg-ivory-light);
    text-align: center;
}

body.pg-custom .pg-about__badge .pg-script {
    color: var(--pg-gold-light);
    font-size: 2.55rem;
}

body.pg-custom .pg-about__badge small {
    max-width: 100px;
    color: rgba(245, 243, 237, 0.75);
    font-family: var(--pg-font-display);
    font-size: 0.48rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    text-transform: uppercase;
}

body.pg-custom .pg-about__content > p:not(.pg-eyebrow):not(.pg-lead) {
    max-width: 61ch;
}

body.pg-custom .pg-tick-list {
    display: grid;
    gap: 11px;
    margin: 26px 0 32px;
    padding: 0;
    list-style: none;
}

body.pg-custom .pg-tick-list li {
    position: relative;
    padding-left: 30px;
    color: var(--pg-ink-soft);
}

body.pg-custom .pg-tick-list li::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 14px;
    height: 7px;
    border-bottom: 1.5px solid var(--pg-gold-dark);
    border-left: 1.5px solid var(--pg-gold-dark);
    content: "";
    transform: rotate(-45deg);
}

body.pg-custom .pg-fleet {
    background: var(--pg-ivory-light);
}

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

body.pg-custom .pg-car-card {
    min-width: 0;
    border: 1px solid var(--pg-line-light);
    background: var(--pg-ivory);
}

body.pg-custom .pg-car-card > img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

body.pg-custom .pg-car-card__body {
    display: flex;
    min-height: 255px;
    flex-direction: column;
    align-items: flex-start;
    padding: 27px 26px 30px;
}

body.pg-custom .pg-car-card__body p:not(.pg-card-number) {
    flex: 1;
    font-size: 0.94rem;
}

body.pg-custom .pg-card-number {
    margin-bottom: 12px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

body.pg-custom .pg-car-card--cta {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    background: var(--pg-ink);
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-car-card--cta h3,
body.pg-custom .pg-car-card--cta p {
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-car-card--cta .pg-card-number,
body.pg-custom .pg-car-card--cta .pg-text-link {
    color: var(--pg-gold-light);
}

body.pg-custom .pg-car-card__cta-icon {
    display: grid;
    width: 76px;
    height: 76px;
    place-items: center;
    margin: 34px 26px 0;
    border: 1px solid rgba(208, 192, 164, 0.55);
    border-radius: 50%;
}

body.pg-custom .pg-car-card__cta-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: var(--pg-gold-light);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.2;
}

body.pg-custom .pg-why {
    background: var(--pg-panel);
}

body.pg-custom .pg-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

body.pg-custom .pg-why-card {
    min-width: 0;
    padding: 30px 26px;
    border-top: 1px solid var(--pg-gold);
    background: rgba(255, 255, 255, 0.28);
}

body.pg-custom .pg-why-card__icon {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
}

body.pg-custom .pg-why-card__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: var(--pg-gold-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

body.pg-custom .pg-why-card p {
    margin-bottom: 0;
    font-size: 0.92rem;
}

body.pg-custom .pg-review-platforms {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 52px;
    flex-wrap: wrap;
}

body.pg-custom .pg-review-platforms img {
    width: min(220px, 42vw);
    max-height: 92px;
    object-fit: contain;
}

body.pg-custom .pg-review-shortcode {
    margin-top: 34px;
    padding: 32px;
    border: 1px solid var(--pg-line-light);
    background: var(--pg-ivory-light);
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-process {
    background: var(--pg-ivory);
}

body.pg-custom .pg-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

body.pg-custom .pg-process-step {
    min-width: 0;
    padding-top: 28px;
    border-top: 1px solid var(--pg-line);
}

body.pg-custom .pg-process-step > span {
    display: block;
    margin-bottom: 14px;
    color: var(--pg-gold);
    font-family: var(--pg-font-script);
    font-size: 3.7rem;
    line-height: 0.85;
}

body.pg-custom .pg-process-step p {
    margin-bottom: 0;
    font-size: 0.94rem;
}

body.pg-custom .pg-areas {
    position: relative;
    overflow: hidden;
    background: var(--pg-ink);
}

body.pg-custom .pg-areas::before {
    position: absolute;
    top: -260px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(208, 192, 164, 0.16);
    border-radius: 50%;
    content: "";
}

body.pg-custom .pg-split--areas {
    position: relative;
    z-index: 1;
}

body.pg-custom .pg-areas__content h2,
body.pg-custom .pg-areas__content > p:not(.pg-eyebrow) {
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-areas__content > p:not(.pg-eyebrow):not(.pg-lead) {
    color: rgba(245, 243, 237, 0.66);
}

body.pg-custom .pg-areas__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(245, 243, 237, 0.16);
    border-left: 1px solid rgba(245, 243, 237, 0.16);
}

body.pg-custom .pg-areas__list > div {
    min-width: 0;
    padding: 30px 26px;
    border-right: 1px solid rgba(245, 243, 237, 0.16);
    border-bottom: 1px solid rgba(245, 243, 237, 0.16);
}

body.pg-custom .pg-areas__list span {
    display: block;
    margin-bottom: 8px;
    color: var(--pg-gold-light);
    font-family: var(--pg-font-display);
    font-size: 0.6rem;
    letter-spacing: 0.17em;
}

body.pg-custom .pg-areas__list strong {
    color: var(--pg-ivory-light);
    font-family: var(--pg-font-serif);
    font-size: clamp(1.35rem, 2vw, 1.75rem);
    font-weight: 400;
}

body.pg-custom .pg-gallery {
    background: #0e0c09;
}

body.pg-custom .pg-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 225px;
    gap: 15px;
}

body.pg-custom .pg-gallery-item {
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(245, 243, 237, 0.08);
}

body.pg-custom .pg-gallery-item--large {
    grid-column: span 2;
    grid-row: span 2;
}

body.pg-custom .pg-gallery-item--wide {
    grid-column: span 2;
}

body.pg-custom .pg-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--pg-ease);
}

body.pg-custom .pg-gallery-item:hover img {
    transform: scale(1.04);
}

body.pg-custom .pg-faq {
    background: var(--pg-ivory-light);
}

body.pg-custom .pg-faq-list {
    max-width: 900px;
    margin-inline: auto;
    border-top: 1px solid var(--pg-line);
}

body.pg-custom .pg-faq-item {
    min-width: 0;
    border-bottom: 1px solid var(--pg-line);
}

body.pg-custom .pg-faq-item h3 {
    min-width: 0;
    margin: 0;
}

body.pg-custom .pg-faq-item button {
    display: flex;
    width: 100%;
    min-width: 0;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 25px 0;
    border: 0;
    background: transparent;
    color: var(--pg-ink);
    cursor: pointer;
    font-family: var(--pg-font-serif);
    font-size: clamp(1.18rem, 2vw, 1.45rem);
    line-height: 1.35;
    text-align: left;
    white-space: normal;
}

body.pg-custom .pg-faq-item button > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: normal;
}

body.pg-custom .pg-faq-icon {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
}

body.pg-custom .pg-faq-icon::before,
body.pg-custom .pg-faq-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: var(--pg-gold-dark);
    content: "";
    transform: translate(-50%, -50%);
    transition: transform 0.3s var(--pg-ease);
}

body.pg-custom .pg-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

body.pg-custom .pg-faq-item.is-open .pg-faq-icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

body.pg-custom .pg-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.42s var(--pg-ease);
}

body.pg-custom .pg-faq-answer > div {
    min-height: 0;
    overflow: hidden;
}

body.pg-custom .pg-faq-item.is-open .pg-faq-answer {
    grid-template-rows: 1fr;
}

body.pg-custom .pg-faq-answer p {
    max-width: 70ch;
    padding: 0 0 25px;
    margin-bottom: 0;
}

body.pg-custom .pg-contact {
    background: var(--pg-ivory);
}

body.pg-custom .pg-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}

body.pg-custom .pg-contact__intro {
    min-width: 0;
}

body.pg-custom .pg-contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

body.pg-custom .pg-contact-cards > a {
    display: grid;
    min-width: 0;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--pg-line-light);
    background: var(--pg-ivory-light);
    transition: border-color 0.3s ease, transform 0.3s var(--pg-ease);
}

body.pg-custom .pg-contact-cards > a:hover,
body.pg-custom .pg-contact-cards > a:focus-visible {
    border-color: var(--pg-gold);
    transform: translateX(4px);
}

body.pg-custom .pg-contact-cards > a > span {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
}

body.pg-custom .pg-contact-cards svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--pg-gold-dark);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.4;
}

body.pg-custom .pg-contact-cards div {
    min-width: 0;
}

body.pg-custom .pg-contact-cards small {
    display: block;
    margin-bottom: 2px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.pg-custom .pg-contact-cards strong {
    display: block;
    min-width: 0;
    color: var(--pg-ink);
    font-family: var(--pg-font-serif);
    font-size: clamp(1rem, 1.55vw, 1.25rem);
    font-weight: 400;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

body.pg-custom .pg-contact__map {
    min-width: 0;
    padding: 12px;
    border: 1px solid var(--pg-line);
    background: var(--pg-ivory-light);
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-contact__map iframe {
    width: 100%;
    min-height: 520px;
}

body.pg-custom .pg-video-cta {
    position: relative;
    display: flex;
    min-height: 650px;
    align-items: center;
    overflow: hidden;
    background: var(--pg-ink);
}

body.pg-custom .pg-video-cta > video,
body.pg-custom .pg-video-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.pg-custom .pg-video-cta > video {
    object-fit: cover;
}

body.pg-custom .pg-video-cta__overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgba(13, 10, 7, 0.86), rgba(13, 10, 7, 0.52)), linear-gradient(0deg, rgba(13, 10, 7, 0.5), rgba(13, 10, 7, 0.05));
}

body.pg-custom .pg-video-cta__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 96px;
    padding-bottom: 96px;
    text-align: center;
}

body.pg-custom .pg-video-cta__content h2,
body.pg-custom .pg-video-cta__content p {
    color: var(--pg-ivory-light);
}

body.pg-custom .pg-video-cta__content > p:not(.pg-eyebrow) {
    max-width: 60ch;
    margin-right: auto;
    margin-bottom: 30px;
    margin-left: auto;
    color: rgba(245, 243, 237, 0.82);
    font-family: var(--pg-font-serif);
    font-size: clamp(1.18rem, 1.8vw, 1.45rem);
}

body.pg-custom .pg-footer {
    padding: 78px 0 30px;
    background: #0b0907;
    color: rgba(245, 243, 237, 0.7);
}

body.pg-custom .pg-footer__grid {
    display: grid;
    grid-template-columns: 1.45fr 0.8fr 1.1fr 0.9fr;
    gap: 48px;
}

body.pg-custom .pg-footer__brand img {
    width: min(300px, 100%);
    height: 92px;
    object-fit: contain;
    object-position: left center;
}

body.pg-custom .pg-footer__brand p {
    max-width: 38ch;
    margin-top: 20px;
    margin-bottom: 0;
    color: rgba(245, 243, 237, 0.56);
    font-size: 0.9rem;
}

body.pg-custom .pg-footer__column {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

body.pg-custom .pg-footer__column h2 {
    margin-bottom: 14px;
    color: var(--pg-gold-light);
    font-family: var(--pg-font-display);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

body.pg-custom .pg-footer__column a {
    max-width: 100%;
    color: rgba(245, 243, 237, 0.69);
    font-size: 0.9rem;
    overflow-wrap: anywhere;
    transition: color 0.25s ease;
}

body.pg-custom .pg-footer__column a:hover,
body.pg-custom .pg-footer__column a:focus-visible {
    color: var(--pg-gold-light);
}

body.pg-custom .pg-footer__email {
    font-size: clamp(0.78rem, 1vw, 0.9rem) !important;
}

body.pg-custom .pg-footer__bottom {
    display: grid;
    justify-items: center;
    gap: 13px;
    margin-top: 56px;
    padding-top: 27px;
    border-top: 1px solid rgba(245, 243, 237, 0.12);
    text-align: center;
}

body.pg-custom .pg-footer__bottom p {
    margin: 0;
    color: rgba(245, 243, 237, 0.45);
    font-size: 0.76rem;
}

body.pg-custom .pg-webwizard-credit {
    color: var(--pg-gold-light);
    font-family: var(--pg-font-display);
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

body.pg-custom .pg-chaty {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1200;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

body.pg-custom .pg-chaty__items {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
}

body.pg-custom .pg-chaty__item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px) scale(0.86);
    transition: opacity 0.3s var(--pg-ease), transform 0.38s var(--pg-ease);
}

body.pg-custom .pg-chaty.is-open .pg-chaty__item {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

body.pg-custom .pg-chaty.is-open .pg-chaty__item:nth-child(2) { transition-delay: 0.05s; }
body.pg-custom .pg-chaty.is-open .pg-chaty__item:nth-child(3) { transition-delay: 0.1s; }

body.pg-custom .pg-chaty__item > span {
    padding: 7px 10px;
    background: var(--pg-ivory-light);
    box-shadow: var(--pg-shadow-small);
    color: var(--pg-ink);
    font-family: var(--pg-font-display);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
}

body.pg-custom .pg-chaty__item > svg {
    width: 49px;
    height: 49px;
    padding: 13px;
    border-radius: 50%;
    box-shadow: var(--pg-shadow-small);
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.pg-custom .pg-chaty__item--whatsapp > svg { background: #25d366; color: #fff; }
body.pg-custom .pg-chaty__item--phone > svg { background: var(--pg-gold); color: var(--pg-ink); }
body.pg-custom .pg-chaty__item--email > svg { background: var(--pg-ink); color: var(--pg-ivory-light); }

body.pg-custom .pg-chaty__toggle {
    position: relative;
    display: grid;
    width: 62px;
    height: 62px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--pg-ink);
    box-shadow: 0 17px 42px -13px rgba(21, 18, 14, 0.72);
    color: var(--pg-ivory-light);
    cursor: pointer;
    transition: background-color 0.35s var(--pg-ease), transform 0.35s var(--pg-ease);
}

body.pg-custom .pg-chaty__toggle::after {
    position: absolute;
    inset: 0;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
    animation: pg-chaty-pulse 2.6s var(--pg-ease) infinite;
    content: "";
}

body.pg-custom .pg-chaty__toggle:hover,
body.pg-custom .pg-chaty__toggle:focus-visible {
    transform: scale(1.06);
}

body.pg-custom .pg-chaty__chat,
body.pg-custom .pg-chaty__close {
    position: absolute;
    display: grid;
    place-items: center;
    transition: opacity 0.35s ease, transform 0.35s var(--pg-ease);
}

body.pg-custom .pg-chaty__chat svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.pg-custom .pg-chaty__close {
    opacity: 0;
    font-family: var(--pg-font-serif);
    font-size: 2.5rem;
    line-height: 1;
    transform: rotate(-45deg) scale(0.4);
}

body.pg-custom .pg-chaty.is-open .pg-chaty__toggle {
    background: var(--pg-gold);
    color: var(--pg-ink);
}

body.pg-custom .pg-chaty.is-open .pg-chaty__toggle::after {
    display: none;
}

body.pg-custom .pg-chaty.is-open .pg-chaty__chat {
    opacity: 0;
    transform: rotate(45deg) scale(0.4);
}

body.pg-custom .pg-chaty.is-open .pg-chaty__close {
    opacity: 1;
    transform: rotate(0) scale(1);
}

body.pg-custom .pg-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s var(--pg-ease), transform 0.75s var(--pg-ease);
}

body.pg-custom .pg-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pg-chaty-pulse {
    0% { opacity: 0.75; transform: scale(1); }
    100% { opacity: 0; transform: scale(1.52); }
}

@media (max-width: 1120px) {
    body.pg-custom .pg-desktop-nav {
        gap: 16px;
    }

    body.pg-custom .pg-desktop-nav > a:not(.pg-button) {
        font-size: 0.64rem;
        letter-spacing: 0.12em;
    }

    body.pg-custom .pg-brand {
        width: 225px;
        min-width: 190px;
    }

    body.pg-custom .pg-hero__copy {
        width: 54%;
    }

    body.pg-custom .pg-hero-form-card {
        width: min(41%, 430px);
        padding: 31px 27px;
    }
}

@media (max-width: 980px) {
    body.pg-custom .pg-desktop-nav {
        display: none;
    }

    body.pg-custom .pg-menu-toggle {
        display: flex;
    }

    body.pg-custom .pg-hero {
        min-height: 0;
    }

    body.pg-custom .pg-hero__media,
    body.pg-custom .pg-hero__overlay {
        bottom: auto;
        height: 720px;
    }

    body.pg-custom .pg-hero__inner {
        min-height: 720px;
        padding-top: 126px;
        padding-bottom: 72px;
    }

    body.pg-custom .pg-hero__copy {
        width: min(100%, 690px);
        padding-right: 0;
    }

    body.pg-custom .pg-hero-form-shell {
        position: relative;
        inset: auto;
        display: block;
        width: 100%;
        padding-top: 0;
        padding-bottom: 54px;
        background: var(--pg-ivory-light);
    }

    body.pg-custom .pg-hero-form-card {
        width: min(100%, 720px);
        max-height: none;
        margin: -42px auto 0;
        overflow: visible;
        padding: 40px;
    }

    body.pg-custom .pg-section-heading--split,
    body.pg-custom .pg-split,
    body.pg-custom .pg-contact__grid {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-section-heading--split {
        gap: 20px;
    }

    body.pg-custom .pg-about__visual {
        width: min(100%, 610px);
        margin-inline: auto;
    }

    body.pg-custom .pg-fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pg-custom .pg-why-grid,
    body.pg-custom .pg-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pg-custom .pg-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 230px;
    }

    body.pg-custom .pg-gallery-item--large {
        grid-row: span 1;
    }

    body.pg-custom .pg-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pg-custom .pg-contact__map iframe {
        min-height: 430px;
    }
}

@media (max-width: 767px) {
    body.admin-bar.pg-custom .pg-header {
        top: 46px;
    }

    body.pg-custom .pg-container {
        width: min(100% - 36px, var(--pg-container));
    }

    body.pg-custom h1 {
        font-size: clamp(2.55rem, 12vw, 4.15rem);
    }

    body.pg-custom h2 {
        font-size: clamp(2.15rem, 10vw, 3.35rem);
    }

    body.pg-custom .pg-header__inner {
        min-height: 72px;
    }

    body.pg-custom .pg-header.is-scrolled .pg-header__inner {
        min-height: 66px;
    }

    body.pg-custom .pg-brand {
        width: 210px;
        min-width: 0;
    }

    body.pg-custom .pg-brand__logo {
        height: 50px;
    }

    body.pg-custom .pg-header.is-scrolled .pg-brand__logo {
        height: 46px;
    }

    body.pg-custom .pg-hero__media,
    body.pg-custom .pg-hero__overlay {
        height: 735px;
    }

    body.pg-custom .pg-hero__media img {
        object-position: center 40%;
    }

    body.pg-custom .pg-hero__overlay {
        background: linear-gradient(0deg, rgba(13, 10, 7, 0.84) 0%, rgba(13, 10, 7, 0.48) 62%, rgba(13, 10, 7, 0.22) 100%);
    }

    body.pg-custom .pg-hero__inner {
        min-height: 735px;
        align-items: flex-end;
        padding-top: 116px;
        padding-bottom: 82px;
    }

    body.pg-custom .pg-hero__copy,
    body.pg-custom .pg-section-heading,
    body.pg-custom .pg-about__content,
    body.pg-custom .pg-areas__content,
    body.pg-custom .pg-video-cta__content,
    body.pg-custom .pg-footer__brand,
    body.pg-custom .pg-footer__column {
        text-align: center;
    }

    body.pg-custom .pg-hero__copy {
        margin-inline: auto;
    }

    body.pg-custom .pg-hero__description,
    body.pg-custom .pg-about__content > p,
    body.pg-custom .pg-areas__content > p,
    body.pg-custom .pg-section-heading > p:last-child {
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-eyebrow {
        justify-content: center;
    }

    body.pg-custom .pg-trust-points {
        justify-items: center;
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-trust-points li {
        justify-content: center;
        text-align: center;
    }

    body.pg-custom .pg-hero-form-card {
        margin-top: -34px;
        padding: 31px 22px;
        text-align: center;
    }

    body.pg-custom .pg-hero-form-card .pg-elementor-form,
    body.pg-custom .pg-hero-form-card .pg-elementor-form * {
        text-align: left;
    }

    body.pg-custom .pg-hero-form-card .pg-elementor-form button,
    body.pg-custom .pg-hero-form-card .pg-elementor-form .elementor-button,
    body.pg-custom .pg-hero-form-card .pg-elementor-form button * {
        text-align: center;
    }

    body.pg-custom .pg-trust-strip__inner {
        width: max-content;
        justify-content: flex-start;
        animation: pg-mobile-marquee 24s linear infinite;
    }

    body.pg-custom .pg-trust-strip p {
        font-size: 1.18rem;
    }

    body.pg-custom .pg-split {
        gap: 66px;
    }

    body.pg-custom .pg-about__visual {
        width: min(92%, 520px);
    }

    body.pg-custom .pg-about__visual::before {
        right: 18px;
        left: -14px;
    }

    body.pg-custom .pg-about__badge {
        right: -14px;
        bottom: -42px;
        width: 138px;
        height: 138px;
    }

    body.pg-custom .pg-about__badge .pg-script {
        font-size: 2.15rem;
    }

    body.pg-custom .pg-tick-list {
        width: min(100%, 510px);
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-tick-list li {
        padding-left: 0;
        text-align: center;
    }

    body.pg-custom .pg-tick-list li::before {
        position: static;
        display: inline-block;
        margin-right: 11px;
        transform: translateY(-2px) rotate(-45deg);
    }

    body.pg-custom .pg-fleet-grid,
    body.pg-custom .pg-why-grid,
    body.pg-custom .pg-process-grid,
    body.pg-custom .pg-areas__list,
    body.pg-custom .pg-footer__grid {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-car-card__body,
    body.pg-custom .pg-why-card,
    body.pg-custom .pg-process-step {
        align-items: center;
        text-align: center;
    }

    body.pg-custom .pg-car-card__body p,
    body.pg-custom .pg-why-card p,
    body.pg-custom .pg-process-step p {
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-car-card__cta-icon {
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-review-shortcode {
        padding: 22px 14px;
    }

    body.pg-custom .pg-areas__list > div {
        text-align: center;
    }

    body.pg-custom .pg-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 255px;
    }

    body.pg-custom .pg-gallery-item--large,
    body.pg-custom .pg-gallery-item--wide {
        grid-column: span 1;
    }

    body.pg-custom .pg-faq-item button {
        align-items: flex-start;
        padding: 23px 0;
        text-align: center;
    }

    body.pg-custom .pg-faq-item button > span:first-child {
        flex: 1;
        padding-left: 34px;
    }

    body.pg-custom .pg-faq-answer p {
        text-align: center;
    }

    body.pg-custom .pg-contact__intro {
        text-align: center;
    }

    body.pg-custom .pg-contact-cards {
        width: min(100%, 560px);
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-contact-cards > a {
        text-align: left;
    }

    body.pg-custom .pg-contact__map iframe {
        min-height: 390px;
    }

    body.pg-custom .pg-video-cta {
        min-height: 600px;
    }

    body.pg-custom .pg-footer__brand img {
        margin-inline: auto;
        object-position: center;
    }

    body.pg-custom .pg-footer__brand p {
        margin-right: auto;
        margin-left: auto;
    }

    body.pg-custom .pg-footer__column {
        align-items: center;
    }

    body.pg-custom .pg-chaty {
        right: 16px;
        bottom: 16px;
    }

    body.pg-custom .pg-chaty__toggle {
        width: 58px;
        height: 58px;
    }
}

@media (max-width: 430px) {
    body.pg-custom .pg-brand {
        width: 180px;
    }

    body.pg-custom .pg-menu-toggle {
        width: 42px;
    }

    body.pg-custom .pg-hero__media,
    body.pg-custom .pg-hero__overlay,
    body.pg-custom .pg-hero__inner {
        height: 760px;
        min-height: 760px;
    }

    body.pg-custom .pg-hero__inner {
        padding-bottom: 68px;
    }

    body.pg-custom .pg-hero__description {
        font-size: 1.1rem;
    }

    body.pg-custom .pg-trust-points li {
        font-size: 0.84rem;
    }

    body.pg-custom .pg-button {
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    body.pg-custom .pg-mobile-menu__actions .pg-button {
        width: 100%;
    }

    body.pg-custom .pg-about__badge {
        right: -8px;
        width: 122px;
        height: 122px;
    }

    body.pg-custom .pg-about__badge .pg-script {
        font-size: 1.95rem;
    }

    body.pg-custom .pg-contact-cards > a {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 12px;
        padding: 14px;
    }

    body.pg-custom .pg-contact-cards > a > span {
        width: 46px;
        height: 46px;
    }

    body.pg-custom .pg-contact-cards strong {
        font-size: 0.95rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.pg-custom *,
    body.pg-custom *::before,
    body.pg-custom *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    body.pg-custom .pg-reveal {
        opacity: 1;
        transform: none;
    }
}

@keyframes pg-mobile-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-38%); }
}

/* === Revision overrides: June 2026 === */
body.pg-custom .pg-hero__media img {
    object-position: 42% center;
}

body.pg-custom .pg-hero__overlay {
    background: linear-gradient(90deg, rgba(14, 11, 8, 0.80) 0%, rgba(14, 11, 8, 0.60) 44%, rgba(14, 11, 8, 0.34) 100%);
}

body.pg-custom .pg-hero-badges {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 14px;
    margin: 26px 0 26px;
}

body.pg-custom .pg-hero-badges img {
    width: 110px;
    max-width: 100%;
    height: auto;
}

body.pg-custom .pg-about__visual img {
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 460px;
    object-fit: cover;
    object-position: center center;
}

body.pg-custom .pg-about__badge {
    z-index: 2;
}

body.pg-custom .pg-why-card {
    text-align: center;
    align-items: center;
}

body.pg-custom .pg-why-card__icon {
    margin-inline: auto;
}

body.pg-custom .pg-review-shortcode {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

body.pg-custom .pg-review-shortcode::before,
body.pg-custom .pg-review-shortcode::after {
    display: none;
}

body.pg-custom .pg-review-shortcode .ti-widget,
body.pg-custom .pg-review-shortcode .ti-widget-container,
body.pg-custom .pg-review-shortcode .ti-widget.ti-goog,
body.pg-custom .pg-review-shortcode .ti-widget.ti-goog .ti-widget-container {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
}

body.pg-custom .pg-review-shortcode iframe {
    background: transparent;
}

body.pg-custom .pg-fleet-grid.pg-fleet-grid--five {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 30px;
}

body.pg-custom .pg-fleet-grid.pg-fleet-grid--five > .pg-car-card {
    grid-column: span 2;
}

body.pg-custom .pg-fleet-grid.pg-fleet-grid--five > .pg-car-card:nth-child(4) {
    grid-column: 2 / span 2;
}

body.pg-custom .pg-fleet-grid.pg-fleet-grid--five > .pg-car-card:nth-child(5) {
    grid-column: 4 / span 2;
}

body.pg-custom .pg-gallery-masonry {
    column-count: 4;
    column-gap: 18px;
}

body.pg-custom .pg-gallery-lightbox {
    display: inline-block;
    width: 100%;
    margin-bottom: 18px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}

body.pg-custom .pg-gallery-lightbox img {
    width: 100%;
    height: auto;
    transition: transform 0.35s var(--pg-ease), opacity 0.35s var(--pg-ease);
}

body.pg-custom .pg-gallery-lightbox:hover img,
body.pg-custom .pg-gallery-lightbox:focus-visible img {
    transform: scale(1.03);
    opacity: 0.96;
}

body.pg-custom .pg-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(8, 7, 6, 0.88);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

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

body.pg-custom.pg-lightbox-open {
    overflow: hidden;
}

body.pg-custom .pg-lightbox__inner {
    position: relative;
    width: min(100%, 1100px);
}

body.pg-custom .pg-lightbox__image {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    margin: 0 auto;
}

body.pg-custom .pg-lightbox__caption {
    margin: 14px 0 0;
    color: rgba(255,255,255,0.92);
    text-align: center;
}

body.pg-custom .pg-lightbox__close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(0,0,0,0.35);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

body.pg-custom .pg-video-cta__overlay {
    background: linear-gradient(90deg, rgba(12, 10, 8, 0.58) 0%, rgba(12, 10, 8, 0.42) 50%, rgba(12, 10, 8, 0.52) 100%);
}

body.pg-custom .pg-mobile-menu__close {
    top: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    border-radius: 999px;
    border: 2px solid #d19d26;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    line-height: 1;
    padding: 0;
}

body.pg-custom .pg-mobile-menu__close:hover,
body.pg-custom .pg-mobile-menu__close:focus-visible {
    background: rgba(209, 157, 38, 0.1);
}

body.pg-custom .pg-contact-cards a strong {
    overflow-wrap: anywhere;
}

/* Exact Platinum-style floating widget */
body.pg-custom .pg-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

body.pg-custom .pg-float__channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

body.pg-custom .pg-float.pg-open .pg-float__channels {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.pg-custom .pg-float__channel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
}

body.pg-custom .pg-float__channel:hover {
  transform: scale(1.1);
}

body.pg-custom .pg-float__channel--whatsapp { background: #25D366; }
body.pg-custom .pg-float__channel--phone { background: #2196F3; }
body.pg-custom .pg-float__channel--email { background: #C5A55A; }

body.pg-custom .pg-float__label {
  position: absolute;
  right: 60px;
  white-space: nowrap;
  background: #1C2418;
  color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.pg-custom .pg-float__channel:hover .pg-float__label {
  opacity: 1;
}

body.pg-custom .pg-float__main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #C5A55A;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(197,165,90,0.4);
  transition: transform 0.3s ease, background 0.3s ease;
  position: relative;
}

body.pg-custom .pg-float__main:hover {
  background: #B8933D;
}

body.pg-custom .pg-float__main svg {
  transition: transform 0.3s ease;
}

body.pg-custom .pg-float.pg-open .pg-float__main svg {
  transform: rotate(90deg);
}

body.pg-custom .pg-float__main-icon-chat,
body.pg-custom .pg-float__main-icon-close {
  position: absolute;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

body.pg-custom .pg-float__main-icon-close {
  opacity: 0;
  transform: rotate(-90deg);
}

body.pg-custom .pg-float.pg-open .pg-float__main-icon-chat {
  opacity: 0;
  transform: rotate(90deg);
}

body.pg-custom .pg-float.pg-open .pg-float__main-icon-close {
  opacity: 1;
  transform: rotate(0deg);
}

@media (max-width: 1120px) {
    body.pg-custom .pg-fleet-grid.pg-fleet-grid--five {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pg-custom .pg-fleet-grid.pg-fleet-grid--five > .pg-car-card,
    body.pg-custom .pg-fleet-grid.pg-fleet-grid--five > .pg-car-card:nth-child(4),
    body.pg-custom .pg-fleet-grid.pg-fleet-grid--five > .pg-car-card:nth-child(5) {
        grid-column: auto;
    }

    body.pg-custom .pg-gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 767px) {
  body.pg-custom .pg-float {
    bottom: 16px;
    right: 16px;
  }

  body.pg-custom .pg-hero__media img {
      object-position: center center;
  }

  body.pg-custom .pg-hero__overlay {
      background: linear-gradient(180deg, rgba(11, 9, 7, 0.84) 0%, rgba(11, 9, 7, 0.68) 52%, rgba(11, 9, 7, 0.56) 100%);
  }

  body.pg-custom .pg-hero__copy h1,
  body.pg-custom .pg-hero__script,
  body.pg-custom .pg-hero__description {
      text-shadow: 0 2px 12px rgba(0,0,0,0.55);
  }

  body.pg-custom .pg-hero__copy h1 {
      font-size: clamp(2.9rem, 12vw, 4.2rem);
  }

  body.pg-custom .pg-hero__description {
      font-size: 1.02rem;
      color: rgba(245, 243, 237, 0.96);
  }

  body.pg-custom .pg-hero-badges {
      justify-content: center;
      gap: 12px;
      margin: 22px 0 24px;
  }

  body.pg-custom .pg-hero-badges img {
      width: 98px;
  }

  body.pg-custom .pg-about__visual img {
      min-height: 0;
      aspect-ratio: 5 / 4;
  }

  body.pg-custom .pg-gallery-masonry {
      column-count: 2;
      column-gap: 14px;
  }

  body.pg-custom .pg-gallery-lightbox {
      margin-bottom: 14px;
  }

  body.pg-custom .pg-lightbox {
      padding: 18px;
  }

  body.pg-custom .pg-lightbox__close {
      top: 12px;
      right: 12px;
      width: 46px;
      height: 46px;
      font-size: 1.6rem;
  }

  body.pg-custom .pg-why-card,
  body.pg-custom .pg-why-card__icon,
  body.pg-custom .pg-why-card h3,
  body.pg-custom .pg-why-card p {
      text-align: center;
      margin-inline: auto;
  }
}

@media (max-width: 560px) {
    body.pg-custom .pg-fleet-grid.pg-fleet-grid--five {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-gallery-masonry {
        column-count: 1;
    }
}

/* === Revision overrides: June 2026 v1.0.2 === */
body.pg-custom .pg-home-reviews {
    padding-top: 70px;
    padding-bottom: 70px;
}

body.pg-custom .pg-home-reviews .pg-section-heading {
    max-width: 820px;
    margin-inline: auto;
}

body.pg-custom .pg-why#pg-why {
    padding-top: 88px;
}

@media (max-width: 980px) {
    body.pg-custom .pg-hero-form-shell {
        padding-top: 18px;
        padding-bottom: 24px;
    }

    body.pg-custom .pg-hero-form-card {
        margin: 0 auto;
    }

    body.pg-custom .pg-home-reviews {
        padding-top: 54px;
        padding-bottom: 54px;
    }
}

@media (max-width: 767px) {
    body.pg-custom .pg-hero-form-shell {
        padding-top: 14px;
        padding-bottom: 18px;
    }

    body.pg-custom .pg-hero-form-card {
        margin-top: 0;
        margin-bottom: 0;
    }

    body.pg-custom .pg-home-reviews {
        padding-top: 42px;
        padding-bottom: 46px;
    }
}

/* === Full-site inner page styles v1.1.0 === */
body.pg-custom .pg-button--outline-light {
    border-color: rgba(255,255,255,0.82);
    background: transparent;
    color: #fff;
}

body.pg-custom .pg-button--outline-light::after {
    background: #fff;
}

body.pg-custom .pg-button--outline-light:hover,
body.pg-custom .pg-button--outline-light:focus-visible {
    color: var(--pg-ink);
}

body.pg-custom .pg-inner-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pg-ink);
}

body.pg-custom .pg-inner-hero__media,
body.pg-custom .pg-inner-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.pg-custom .pg-inner-hero__media {
    object-fit: cover;
    object-position: center;
}

body.pg-custom .pg-inner-hero__overlay {
    background: linear-gradient(90deg, rgba(13,10,7,0.82) 0%, rgba(13,10,7,0.56) 48%, rgba(13,10,7,0.24) 100%);
}

body.pg-custom .pg-inner-hero__content {
    position: relative;
    z-index: 2;
    max-width: 790px;
    margin-left: max(28px, calc((100vw - var(--pg-container)) / 2));
    padding-top: 155px;
    padding-bottom: 105px;
}

body.pg-custom .pg-inner-hero__content h1,
body.pg-custom .pg-inner-hero__content > p:not(.pg-eyebrow) {
    color: #fff;
}

body.pg-custom .pg-inner-hero__content > p:not(.pg-eyebrow) {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 1.12rem;
}

body.pg-custom .pg-inner-hero--fleet .pg-inner-hero__media {
    object-position: center 58%;
}

body.pg-custom .pg-split--inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(48px, 7vw, 100px);
    align-items: center;
}

body.pg-custom .pg-inner-image {
    position: relative;
}

body.pg-custom .pg-inner-image::after {
    position: absolute;
    inset: 18px -18px -18px 18px;
    z-index: 0;
    border: 1px solid rgba(165,146,124,0.42);
    content: "";
    pointer-events: none;
}

body.pg-custom .pg-inner-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-inner-copy > p:last-of-type {
    margin-bottom: 28px;
}

body.pg-custom .pg-owner-service,
body.pg-custom .pg-gallery-next,
body.pg-custom .pg-contact-next {
    background: var(--pg-ivory-light);
}

body.pg-custom .pg-icon-list,
body.pg-custom .pg-number-list {
    display: grid;
    gap: 18px;
    margin: 28px 0 34px;
    padding: 0;
    list-style: none;
}

body.pg-custom .pg-icon-list li,
body.pg-custom .pg-number-list li {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

body.pg-custom .pg-icon-list li > span {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
    color: var(--pg-gold-dark);
}

body.pg-custom .pg-icon-list svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.pg-custom .pg-icon-list strong,
body.pg-custom .pg-number-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--pg-ink);
    font-family: var(--pg-font-serif);
    font-size: 1.3rem;
    font-weight: 500;
}

body.pg-custom .pg-icon-list p,
body.pg-custom .pg-number-list p {
    margin-bottom: 0;
}

body.pg-custom .pg-values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

body.pg-custom .pg-value-card {
    padding: 42px 34px;
    border-top: 1px solid var(--pg-gold);
    background: var(--pg-ivory-light);
    text-align: center;
}

body.pg-custom .pg-value-card > span {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
    color: var(--pg-gold-dark);
}

body.pg-custom .pg-value-card svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.pg-custom .pg-inner-cta {
    padding: 100px 0;
    background: var(--pg-ink);
    text-align: center;
}

body.pg-custom .pg-inner-cta__content {
    max-width: 850px;
    margin-inline: auto;
}

body.pg-custom .pg-inner-cta h2,
body.pg-custom .pg-inner-cta p {
    color: #fff;
}

body.pg-custom .pg-inner-cta p:not(.pg-eyebrow) {
    max-width: 690px;
    margin: 0 auto 30px;
}

body.pg-custom .pg-fleet-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 880px;
    margin: 54px auto 0;
    border: 1px solid var(--pg-line);
    background: var(--pg-ivory-light);
}

body.pg-custom .pg-fleet-summary > div {
    padding: 30px 24px;
    text-align: center;
}

body.pg-custom .pg-fleet-summary > div + div {
    border-left: 1px solid var(--pg-line);
}

body.pg-custom .pg-fleet-summary strong,
body.pg-custom .pg-fleet-summary span {
    display: block;
}

body.pg-custom .pg-fleet-summary strong {
    margin-bottom: 4px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-serif);
    font-size: 2rem;
    font-weight: 500;
}

body.pg-custom .pg-fleet-summary span {
    color: var(--pg-muted);
    font-family: var(--pg-font-display);
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.pg-custom .pg-vehicle-section {
    padding: 110px 0;
    scroll-margin-top: 110px;
}

body.pg-custom .pg-vehicle-section--alt {
    background: var(--pg-ivory-light);
}

body.pg-custom .pg-vehicle-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(48px, 7vw, 96px);
    align-items: center;
}

body.pg-custom .pg-vehicle-layout--reverse .pg-vehicle-media {
    order: 2;
}

body.pg-custom .pg-vehicle-layout--reverse .pg-vehicle-copy {
    order: 1;
}

body.pg-custom .pg-vehicle-media > img,
body.pg-custom .pg-vehicle-media__main {
    width: 100%;
    min-height: 430px;
    max-height: 610px;
    object-fit: cover;
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-video-embed {
    position: relative;
    width: calc(100% - 64px);
    aspect-ratio: 16 / 9;
    margin: -48px 0 0 auto;
    border: 8px solid var(--pg-ivory);
    background: #000;
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-vehicle-section--alt .pg-video-embed {
    border-color: var(--pg-ivory-light);
}

body.pg-custom .pg-video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

body.pg-custom .pg-vehicle-media--collage {
    display: grid;
    grid-template-columns: 1fr 0.48fr;
    grid-template-rows: 1fr auto;
    gap: 16px;
}

body.pg-custom .pg-vehicle-media--collage .pg-vehicle-media__main {
    grid-column: 1 / -1;
    min-height: 480px;
}

body.pg-custom .pg-vehicle-media--collage .pg-vehicle-media__detail {
    grid-column: 2;
    width: 100%;
    min-height: 230px;
    margin-top: -100px;
    border: 8px solid var(--pg-ivory-light);
    object-fit: cover;
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-spec-list {
    margin: 28px 0 34px;
    border-top: 1px solid var(--pg-line);
}

body.pg-custom .pg-spec-list > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 22px;
    padding: 14px 0;
    border-bottom: 1px solid var(--pg-line);
}

body.pg-custom .pg-spec-list dt {
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.66rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.pg-custom .pg-spec-list dd {
    margin: 0;
    color: var(--pg-ink-soft);
}

body.pg-custom .pg-gallery-page {
    background: var(--pg-ink);
}

body.pg-custom .pg-gallery-page .pg-section-heading h2,
body.pg-custom .pg-gallery-page .pg-section-heading p {
    color: #fff;
}

body.pg-custom .pg-gallery-page .pg-eyebrow {
    color: var(--pg-gold-light);
}

body.pg-custom .pg-gallery-masonry--page {
    column-count: 3;
}

body.pg-custom .pg-contact-hero {
    position: relative;
    min-height: 850px;
    overflow: hidden;
    background: var(--pg-ink);
}

body.pg-custom .pg-contact-hero__media,
body.pg-custom .pg-contact-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.pg-custom .pg-contact-hero__media {
    object-fit: cover;
    object-position: center;
}

body.pg-custom .pg-contact-hero__overlay {
    background: linear-gradient(90deg, rgba(13,10,7,0.82) 0%, rgba(13,10,7,0.48) 55%, rgba(13,10,7,0.34) 100%);
}

body.pg-custom .pg-contact-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
    gap: 70px;
    align-items: center;
    min-height: 850px;
    padding-top: 135px;
    padding-bottom: 80px;
}

body.pg-custom .pg-contact-hero__copy {
    max-width: 690px;
}

body.pg-custom .pg-contact-hero__copy h1,
body.pg-custom .pg-contact-hero__copy > p:not(.pg-eyebrow) {
    color: #fff;
}

body.pg-custom .pg-contact-hero__copy > p:not(.pg-eyebrow) {
    max-width: 600px;
    font-size: 1.12rem;
}

body.pg-custom .pg-contact-hero__trust {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

body.pg-custom .pg-contact-hero__trust span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.92);
}

body.pg-custom .pg-contact-hero__trust svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--pg-gold-light);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.6;
}

body.pg-custom .pg-contact-form-card,
body.pg-custom .pg-thank-you__form {
    padding: 42px 36px;
    border: 1px solid rgba(255,255,255,0.72);
    background: rgba(245,243,237,0.98);
    box-shadow: var(--pg-shadow);
}

body.pg-custom .pg-contact-form-card h2,
body.pg-custom .pg-thank-you__form h2 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 3vw, 2.7rem);
}

body.pg-custom .pg-contact-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

body.pg-custom .pg-contact-detail-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    padding: 34px 22px;
    border-top: 1px solid var(--pg-gold);
    background: var(--pg-ivory-light);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.pg-custom a.pg-contact-detail-card:hover,
body.pg-custom a.pg-contact-detail-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-contact-detail-card > span {
    display: flex;
    width: 54px;
    height: 54px;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
    color: var(--pg-gold-dark);
}

body.pg-custom .pg-contact-detail-card svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.pg-custom .pg-contact-detail-card small {
    margin-bottom: 7px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.63rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.pg-custom .pg-contact-detail-card strong {
    max-width: 100%;
    color: var(--pg-ink);
    font-family: var(--pg-font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    overflow-wrap: anywhere;
}

body.pg-custom .pg-number-list li > span {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.66rem;
}

body.pg-custom .pg-contact-map iframe {
    width: 100%;
    min-height: 500px;
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-contact-map > p {
    margin: 14px 0 0;
    text-align: center;
}

body.pg-custom .pg-dual-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    max-width: 980px;
    margin-inline: auto;
}

body.pg-custom .pg-dual-card {
    display: block;
    padding: 44px 38px;
    border: 1px solid var(--pg-line);
    background: var(--pg-ivory-light);
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

body.pg-custom .pg-dual-card:hover,
body.pg-custom .pg-dual-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-dual-card > span {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    border: 1px solid var(--pg-gold);
    border-radius: 50%;
    color: var(--pg-gold-dark);
}

body.pg-custom .pg-dual-card > span svg,
body.pg-custom .pg-dual-card > strong svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
}

body.pg-custom .pg-dual-card > strong {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.pg-custom .pg-dual-card > strong svg {
    width: 17px;
}

body.pg-custom .pg-thank-you {
    position: relative;
    min-height: 900px;
    padding: 160px 0 100px;
    background: var(--pg-ivory-light);
    overflow: hidden;
}

body.pg-custom .pg-thank-you__media {
    position: absolute;
    inset: 0 50% 0 0;
}

body.pg-custom .pg-thank-you__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13,10,7,0.38), rgba(13,10,7,0.1));
    content: "";
}

body.pg-custom .pg-thank-you__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.pg-custom .pg-thank-you__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(430px, 0.75fr);
    gap: 70px;
    align-items: center;
}

body.pg-custom .pg-thank-you__copy {
    max-width: 590px;
    padding: 48px;
    background: rgba(245,243,237,0.94);
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-thank-you__links {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 30px;
}

body.pg-custom .pg-thank-you__links a {
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.pg-custom .pg-final-thanks {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--pg-ink);
}

body.pg-custom .pg-final-thanks__media,
body.pg-custom .pg-final-thanks__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

body.pg-custom .pg-final-thanks__media {
    object-fit: cover;
}

body.pg-custom .pg-final-thanks__overlay {
    background: rgba(13,10,7,0.66);
}

body.pg-custom .pg-final-thanks__content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: center;
}

body.pg-custom .pg-final-thanks h1,
body.pg-custom .pg-final-thanks p {
    color: #fff;
}

body.pg-custom .pg-final-thanks .pg-script {
    color: var(--pg-gold-light);
}

body.pg-custom .pg-final-thanks__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

body.pg-custom .pg-legal-hero {
    padding: 190px 0 90px;
    background: var(--pg-ink);
    text-align: center;
}

body.pg-custom .pg-legal-hero h1,
body.pg-custom .pg-legal-hero p {
    color: #fff;
}

body.pg-custom .pg-legal-hero p:not(.pg-eyebrow) {
    margin-bottom: 0;
}

body.pg-custom .pg-legal-page__inner {
    max-width: 930px;
}

body.pg-custom .pg-legal-page h2 {
    margin-top: 54px;
    margin-bottom: 14px;
    font-size: clamp(1.8rem, 3vw, 2.45rem);
}

body.pg-custom .pg-legal-page h3 {
    margin-top: 30px;
    font-size: 1.45rem;
}

body.pg-custom .pg-legal-page p,
body.pg-custom .pg-legal-page li {
    color: var(--pg-ink-soft);
}

body.pg-custom .pg-legal-page a {
    color: var(--pg-gold-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

body.pg-custom .pg-legal-page ul {
    padding-left: 22px;
}

body.pg-custom .pg-legal-notice {
    margin-bottom: 38px;
    padding: 22px 24px;
    border-left: 4px solid var(--pg-gold);
    background: var(--pg-ivory-light);
    color: var(--pg-ink-soft);
}

body.pg-custom .pg-legal-table-wrap {
    overflow-x: auto;
    margin: 28px 0;
}

body.pg-custom .pg-legal-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

body.pg-custom .pg-legal-table th,
body.pg-custom .pg-legal-table td {
    padding: 14px 16px;
    border: 1px solid var(--pg-line);
    text-align: left;
    vertical-align: top;
}

body.pg-custom .pg-legal-table th {
    background: var(--pg-ink);
    color: #fff;
    font-family: var(--pg-font-display);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

body.pg-custom .pg-legal-table td {
    background: var(--pg-ivory-light);
    color: var(--pg-ink-soft);
}

@media (max-width: 1120px) {
    body.pg-custom .pg-contact-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
        gap: 42px;
    }

    body.pg-custom .pg-contact-detail-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.pg-custom .pg-thank-you__grid {
        grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
        gap: 38px;
    }
}

@media (max-width: 980px) {
    body.pg-custom .pg-inner-hero {
        min-height: 620px;
    }

    body.pg-custom .pg-inner-hero__content {
        margin-inline: auto;
        padding-top: 140px;
        padding-bottom: 90px;
    }

    body.pg-custom .pg-split--inner,
    body.pg-custom .pg-vehicle-layout,
    body.pg-custom .pg-contact-hero__grid,
    body.pg-custom .pg-thank-you__grid {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-vehicle-layout--reverse .pg-vehicle-media,
    body.pg-custom .pg-vehicle-layout--reverse .pg-vehicle-copy {
        order: initial;
    }

    body.pg-custom .pg-vehicle-media,
    body.pg-custom .pg-vehicle-copy,
    body.pg-custom .pg-inner-copy,
    body.pg-custom .pg-inner-image {
        width: min(100%, 760px);
        margin-inline: auto;
    }

    body.pg-custom .pg-contact-hero {
        min-height: 0;
    }

    body.pg-custom .pg-contact-hero__grid {
        min-height: 0;
        padding-top: 150px;
        padding-bottom: 80px;
    }

    body.pg-custom .pg-contact-hero__copy {
        max-width: 700px;
        margin-inline: auto;
        text-align: center;
    }

    body.pg-custom .pg-contact-hero__copy > p:not(.pg-eyebrow) {
        margin-inline: auto;
    }

    body.pg-custom .pg-contact-hero__trust {
        justify-items: center;
    }

    body.pg-custom .pg-contact-form-card {
        width: min(100%, 720px);
        margin-inline: auto;
    }

    body.pg-custom .pg-thank-you {
        padding-top: 140px;
    }

    body.pg-custom .pg-thank-you__media {
        inset: 0;
        height: 580px;
    }

    body.pg-custom .pg-thank-you__media::after {
        background: rgba(13,10,7,0.42);
    }

    body.pg-custom .pg-thank-you__grid {
        padding-top: 220px;
    }

    body.pg-custom .pg-thank-you__copy,
    body.pg-custom .pg-thank-you__form {
        width: min(100%, 720px);
        margin-inline: auto;
    }
}

@media (max-width: 767px) {
    body.pg-custom .pg-inner-hero {
        min-height: 590px;
        text-align: center;
    }

    body.pg-custom .pg-inner-hero__overlay {
        background: linear-gradient(180deg, rgba(13,10,7,0.54) 0%, rgba(13,10,7,0.72) 100%);
    }

    body.pg-custom .pg-inner-hero__content {
        padding-top: 130px;
        padding-bottom: 70px;
    }

    body.pg-custom .pg-inner-hero__content > p:not(.pg-eyebrow) {
        margin-inline: auto;
    }

    body.pg-custom .pg-inner-hero--gallery .pg-inner-hero__media,
    body.pg-custom .pg-inner-hero--reviews .pg-inner-hero__media {
        object-position: center 28%;
    }

    body.pg-custom .pg-inner-image::after {
        inset: 12px -10px -12px 10px;
    }

    body.pg-custom .pg-inner-image img {
        min-height: 360px;
    }

    body.pg-custom .pg-inner-copy,
    body.pg-custom .pg-vehicle-copy {
        text-align: center;
    }

    body.pg-custom .pg-values-grid,
    body.pg-custom .pg-fleet-summary,
    body.pg-custom .pg-contact-detail-grid,
    body.pg-custom .pg-dual-cards {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-fleet-summary > div + div {
        border-top: 1px solid var(--pg-line);
        border-left: 0;
    }

    body.pg-custom .pg-vehicle-section {
        padding: 80px 0;
    }

    body.pg-custom .pg-vehicle-media > img,
    body.pg-custom .pg-vehicle-media__main {
        min-height: 330px;
    }

    body.pg-custom .pg-video-embed {
        width: calc(100% - 28px);
        margin-top: -26px;
        border-width: 5px;
    }

    body.pg-custom .pg-vehicle-media--collage {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    body.pg-custom .pg-vehicle-media--collage .pg-vehicle-media__main,
    body.pg-custom .pg-vehicle-media--collage .pg-vehicle-media__detail {
        grid-column: auto;
    }

    body.pg-custom .pg-vehicle-media--collage .pg-vehicle-media__detail {
        width: calc(100% - 28px);
        min-height: 260px;
        margin: -30px 0 0 auto;
        border-width: 5px;
    }

    body.pg-custom .pg-spec-list > div {
        grid-template-columns: 1fr;
        gap: 4px;
        text-align: center;
    }

    body.pg-custom .pg-gallery-masonry--page {
        column-count: 2;
    }

    body.pg-custom .pg-contact-hero__grid {
        padding-top: 120px;
        padding-bottom: 54px;
    }

    body.pg-custom .pg-contact-hero__overlay {
        background: linear-gradient(180deg, rgba(13,10,7,0.62) 0%, rgba(13,10,7,0.76) 60%, rgba(13,10,7,0.86) 100%);
    }

    body.pg-custom .pg-contact-form-card,
    body.pg-custom .pg-thank-you__form {
        padding: 32px 22px;
    }

    body.pg-custom .pg-contact-detail-grid {
        gap: 16px;
    }

    body.pg-custom .pg-contact-map iframe {
        min-height: 360px;
    }

    body.pg-custom .pg-thank-you {
        padding-top: 105px;
        padding-bottom: 70px;
    }

    body.pg-custom .pg-thank-you__media {
        height: 470px;
    }

    body.pg-custom .pg-thank-you__grid {
        padding-top: 180px;
    }

    body.pg-custom .pg-thank-you__copy {
        padding: 32px 24px;
    }

    body.pg-custom .pg-final-thanks__content {
        padding-top: 130px;
        padding-bottom: 80px;
    }

    body.pg-custom .pg-final-thanks__actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.pg-custom .pg-legal-hero {
        padding: 145px 0 70px;
    }

    body.pg-custom .pg-legal-page h2 {
        margin-top: 42px;
    }
}

@media (max-width: 520px) {
    body.pg-custom .pg-gallery-masonry--page {
        column-count: 1;
    }
}

/* === Full-site revisions v1.2.0 === */
body.pg-custom .pg-inner-hero__media,
body.pg-custom .pg-contact-hero__media {
    filter: none;
    image-rendering: auto;
    transform: none;
}

/* Click-operated desktop car menu */
body.pg-custom .pg-nav-dropdown {
    position: relative;
}

body.pg-custom .pg-nav-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pg-ivory-light);
    cursor: pointer;
    font-family: var(--pg-font-display);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.pg-custom .pg-nav-dropdown__toggle svg,
body.pg-custom .pg-mobile-dropdown__toggle svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    transition: transform 0.25s ease;
}

body.pg-custom .pg-nav-dropdown.is-open .pg-nav-dropdown__toggle svg,
body.pg-custom .pg-mobile-dropdown.is-open .pg-mobile-dropdown__toggle svg {
    transform: rotate(180deg);
}

body.pg-custom .pg-header.is-scrolled .pg-nav-dropdown__toggle {
    color: var(--pg-ink);
}

body.pg-custom .pg-nav-dropdown__menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    z-index: 1200;
    width: 290px;
    padding: 10px;
    border: 1px solid var(--pg-line);
    background: var(--pg-ivory-light);
    box-shadow: var(--pg-shadow-small);
    transform: translateX(-50%);
}

body.pg-custom .pg-nav-dropdown__menu[hidden],
body.pg-custom .pg-mobile-dropdown__menu[hidden] {
    display: none;
}

body.pg-custom .pg-nav-dropdown__menu a {
    display: block;
    padding: 11px 13px;
    color: var(--pg-ink);
    font-family: var(--pg-font-sans);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

body.pg-custom .pg-nav-dropdown__menu a:hover,
body.pg-custom .pg-nav-dropdown__menu a:focus-visible {
    background: var(--pg-panel);
    color: var(--pg-gold-dark);
}

body.pg-custom .pg-mobile-dropdown {
    width: min(100%, 420px);
    text-align: center;
}

body.pg-custom .pg-mobile-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--pg-ink);
    cursor: pointer;
    font-family: var(--pg-font-serif);
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.15;
}

body.pg-custom .pg-mobile-dropdown__menu {
    display: grid;
    gap: 4px;
    margin-top: 14px;
    padding: 14px 12px;
    border-top: 1px solid var(--pg-line);
    border-bottom: 1px solid var(--pg-line);
}

body.pg-custom .pg-mobile-menu__nav .pg-mobile-dropdown__menu a {
    padding: 7px 6px;
    color: var(--pg-ink-soft);
    font-family: var(--pg-font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.35;
}

/* Rebuilt vehicle sections: title, carousel, copy/specs, video, CTA */
body.pg-custom .pg-car-detail {
    padding: 110px 0;
    scroll-margin-top: 100px;
}

body.pg-custom .pg-car-detail--alt {
    background: var(--pg-ivory-light);
}

body.pg-custom .pg-car-detail__heading {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}

body.pg-custom .pg-car-detail__heading h2 {
    margin-bottom: 0;
}

body.pg-custom .pg-car-detail__main {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: clamp(42px, 6vw, 82px);
    align-items: start;
}

body.pg-custom .pg-car-detail__copy {
    padding-top: 8px;
}

body.pg-custom .pg-car-carousel {
    position: relative;
    min-width: 0;
}

body.pg-custom .pg-car-carousel__viewport {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--pg-line);
    background: #dedad0;
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-car-carousel__track {
    position: relative;
    aspect-ratio: 4 / 3;
}

body.pg-custom .pg-car-carousel__slide {
    position: absolute;
    inset: 0;
    display: none;
    margin: 0;
}

body.pg-custom .pg-car-carousel__slide.is-active {
    display: block;
}

body.pg-custom .pg-car-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

body.pg-custom .pg-car-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    background: rgba(21,18,14,0.76);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.2s ease, transform 0.2s ease;
}

body.pg-custom .pg-car-carousel__arrow:hover,
body.pg-custom .pg-car-carousel__arrow:focus-visible {
    background: var(--pg-gold-dark);
    transform: translateY(-50%) scale(1.05);
}

body.pg-custom .pg-car-carousel__arrow--prev { left: 16px; }
body.pg-custom .pg-car-carousel__arrow--next { right: 16px; }

body.pg-custom .pg-car-carousel__arrow svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

body.pg-custom .pg-car-carousel__dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding-top: 16px;
}

body.pg-custom .pg-car-carousel__dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid var(--pg-gold-dark);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

body.pg-custom .pg-car-carousel__dot.is-active {
    background: var(--pg-gold-dark);
}

body.pg-custom .pg-car-detail__video {
    position: relative;
    width: min(100%, 900px);
    aspect-ratio: 16 / 9;
    margin: 58px auto 0;
    overflow: hidden;
    border: 1px solid var(--pg-line);
    background: #000;
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-car-detail__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

body.pg-custom .pg-car-detail__cta {
    margin-top: 34px;
    text-align: center;
}

/* A fuller gallery can flow naturally without blank grid cells. */
body.pg-custom .pg-gallery-masonry--page {
    column-count: 4;
    column-gap: 18px;
}

@media (max-width: 1120px) {
    body.pg-custom .pg-desktop-nav {
        gap: 16px;
    }

    body.pg-custom .pg-nav-dropdown__toggle,
    body.pg-custom .pg-desktop-nav > a:not(.pg-button) {
        font-size: 0.64rem;
    }

    body.pg-custom .pg-car-detail__main {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
        gap: 42px;
    }

    body.pg-custom .pg-gallery-masonry--page {
        column-count: 3;
    }
}

@media (max-width: 980px) {
    body.pg-custom .pg-car-detail__main {
        grid-template-columns: 1fr;
    }

    body.pg-custom .pg-car-carousel,
    body.pg-custom .pg-car-detail__copy {
        width: min(100%, 760px);
        margin-inline: auto;
    }
}

@media (max-width: 767px) {
    body.pg-custom .pg-mobile-menu {
        justify-content: flex-start;
        padding-top: 96px;
    }

    body.pg-custom .pg-mobile-menu__nav {
        width: 100%;
    }

    body.pg-custom .pg-car-detail {
        padding: 74px 0;
        scroll-margin-top: 76px;
    }

    body.pg-custom .pg-car-detail__heading {
        margin-bottom: 30px;
    }

    body.pg-custom .pg-car-detail__main {
        gap: 32px;
    }

    body.pg-custom .pg-car-detail__copy {
        text-align: center;
    }

    body.pg-custom .pg-car-carousel__track {
        aspect-ratio: 4 / 3;
    }

    body.pg-custom .pg-car-carousel__arrow {
        width: 42px;
        height: 42px;
    }

    body.pg-custom .pg-car-carousel__arrow--prev { left: 10px; }
    body.pg-custom .pg-car-carousel__arrow--next { right: 10px; }

    body.pg-custom .pg-car-detail__video {
        margin-top: 38px;
    }

    body.pg-custom .pg-car-detail__cta {
        margin-top: 28px;
    }

    body.pg-custom .pg-gallery-masonry--page {
        column-count: 2;
        column-gap: 14px;
    }
}

@media (max-width: 520px) {
    body.pg-custom .pg-gallery-masonry--page {
        column-count: 1;
    }
}

/* === Fleet carousel and mobile navigation fixes v1.2.1 === */
body.pg-custom .pg-car-carousel__counter {
    margin-top: 14px;
    color: var(--pg-gold-dark);
    font-family: var(--pg-font-display);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-align: center;
}

body.pg-custom .pg-car-carousel__dots {
    max-width: 100%;
    margin-inline: auto;
}

body.pg-custom .pg-car-carousel.is-loading .pg-car-carousel__arrow {
    pointer-events: none;
    opacity: 0.72;
}

body.pg-custom.pg-menu-open .pg-menu-toggle {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

body.pg-custom .pg-mobile-menu {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    width: 100vw;
    height: 100dvh;
    min-height: 100svh;
    max-height: 100dvh;
    z-index: 9998;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

body.pg-custom .pg-mobile-menu__close {
    z-index: 2;
}

@media (max-width: 767px) {
    body.pg-custom .pg-mobile-menu {
        align-items: center;
        justify-content: flex-start;
        padding: calc(94px + env(safe-area-inset-top)) 22px calc(36px + env(safe-area-inset-bottom));
    }

    body.pg-custom .pg-mobile-menu__nav {
        flex: 0 0 auto;
        width: min(100%, 430px);
        gap: 18px;
        padding-bottom: 8px;
    }

    body.pg-custom .pg-mobile-menu__actions {
        flex: 0 0 auto;
        margin-top: 28px;
        padding-bottom: 24px;
    }

    body.pg-custom .pg-car-carousel__dots {
        display: none;
    }

    body.pg-custom .pg-car-carousel__counter {
        margin-top: 16px;
        font-size: 0.76rem;
    }
}


/* === v1.3.0 updates === */
body.pg-custom .pg-fleet-grid.pg-fleet-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.pg-custom .pg-hero__media--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.pg-custom .pg-inner-hero--gallery .pg-inner-hero__media,
body.pg-custom .pg-inner-hero--reviews .pg-inner-hero__media {
    object-position: center 30%;
}

body.pg-custom .pg-elfsight-reviews {
    margin-top: 34px;
    padding: clamp(18px, 4vw, 40px);
    border: 1px solid var(--pg-line-light);
    background: rgba(245, 243, 237, 0.72);
    box-shadow: var(--pg-shadow-small);
}

body.pg-custom .pg-elfsight-reviews > script {
    display: none;
}

@media (max-width: 1120px) {
    body.pg-custom .pg-fleet-grid.pg-fleet-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    body.pg-custom .pg-fleet-grid.pg-fleet-grid--four {
        grid-template-columns: 1fr;
    }
}
