:root {
    --pjh-bg: #050908;
    --pjh-panel: rgba(255, 255, 255, 0.025);
    --pjh-panel-strong: rgba(255, 255, 255, 0.045);
    --pjh-gold: #c79a50;
    --pjh-gold-soft: #ddb978;
    --pjh-text: #f7f2ea;
    --pjh-muted: #b9b6b0;
    --pjh-line: rgba(199, 154, 80, 0.28);
    --pjh-line-soft: rgba(255, 255, 255, 0.08);
}

.pjh-footer,
.pjh-footer * {
    box-sizing: border-box;
}

.pjh-footer {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    width: 100%;
    background: radial-gradient(circle at 12% 20%, rgba(16, 65, 54, 0.22), transparent 34%), radial-gradient(circle at 92% 15%, rgba(199, 154, 80, 0.09), transparent 27%), linear-gradient(135deg, #000000 0%, #000000 52%, #09100e 100%);
    color: var(--pjh-text);
    font-family: Inter, Poppins, Arial, sans-serif;
    border-top: 1px solid rgba(199, 154, 80, 0.55);
}

.pjh-footer a {
    color: inherit;
    text-decoration: none;
}

.pjh-footer svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pjh-footer__glow {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        linear-gradient(90deg, transparent, rgba(255,255,255,.018), transparent),
        repeating-linear-gradient(90deg, transparent 0 120px, rgba(255,255,255,.01) 121px, transparent 122px);
    mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.pjh-footer__shell {
    width: min(1680px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 24px;
}

.pjh-footer__main {
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(280px, .72fr) minmax(390px, 1fr);
    gap: 46px;
    align-items: start;
    padding: 0 12px 56px;
}

.pjh-footer__brand,
.pjh-footer__nav,
.pjh-footer__locations {
    min-width: 0;
}

.pjh-brand-row {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
}

.pjh-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 18px;
    border: 1px solid var(--pjh-line);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.018);
    box-shadow: inset 0 0 30px rgba(199, 154, 80, 0.025);
}

.pjh-brand-logo img {
    display: block;
    width: 100%;
    max-width: 145px;
    max-height: 125px;
    object-fit: contain;
}

.pjh-brand-wordmark {
    display: grid;
    place-items: center;
    min-height: 150px;
    padding: 20px;
    border: 1px solid var(--pjh-line);
    border-radius: 28px;
    color: var(--pjh-gold-soft);
    font-family: Georgia, serif;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
    letter-spacing: .08em;
}

.pjh-brand-copy {
    max-width: 540px;
    margin: 0;
    color: #ddd8d0;
    font-size: 16px;
    line-height: 1.72;
}

.pjh-section-title {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 18px;
    align-items: center;
    margin: 46px 0 24px;
}

.pjh-section-title span {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--pjh-line), transparent);
}

.pjh-section-title h2 {
    margin: 0;
    color: var(--pjh-gold-soft);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .34em;
    text-transform: uppercase;
}

.pjh-gallery {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.pjh-gallery__item {
    position: relative;
    overflow: hidden;
    aspect-ratio: .82;
    border: 1px solid rgba(199, 154, 80, .28);
    border-radius: 15px;
    background: rgba(255,255,255,.03);
}

.pjh-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .45s ease, filter .45s ease;
}

.pjh-gallery__overlay {
    position: absolute;
    inset: auto 8px 8px;
    padding: 7px 9px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    background: rgba(3, 8, 7, .76);
    color: #fff;
    font-size: 10px;
    text-align: center;
    letter-spacing: .14em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .3s ease, transform .3s ease;
}

.pjh-gallery__item:hover img {
    transform: scale(1.06);
    filter: brightness(.82);
}

.pjh-gallery__item:hover .pjh-gallery__overlay {
    opacity: 1;
    transform: translateY(0);
}

.pjh-outline-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 46px;
    margin-top: 24px;
    padding: 0 24px;
    border: 1px solid rgba(199, 154, 80, .78);
    border-radius: 999px;
    color: var(--pjh-gold-soft);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.pjh-outline-button svg {
    width: 19px;
    height: 19px;
}

.pjh-outline-button:hover {
    color: #0b0d0c;
    background: var(--pjh-gold-soft);
    transform: translateY(-2px);
}

.pjh-section-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0 0 20px;
}

.pjh-section-heading::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--pjh-line), transparent);
}

.pjh-section-heading span {
    color: var(--pjh-gold-soft);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pjh-footer__nav,
.pjh-footer__locations {
    padding: 28px;
    border: 1px solid var(--pjh-line);
    border-radius: 26px;
    background: linear-gradient(180deg, rgba(255,255,255,.026), rgba(255,255,255,.012));
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

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

.pjh-footer__nav li + li {
    border-top: 1px solid var(--pjh-line-soft);
}

.pjh-footer__nav a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 6px 0 14px;
    color: #d6d2cc;
    font-size: 15px;
    transition: color .25s ease, padding-left .25s ease;
}

.pjh-footer__nav a::before {
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 0;
    border-radius: 999px;
    background: var(--pjh-gold-soft);
    transition: height .25s ease;
}

.pjh-footer__nav a svg {
    width: 17px;
    height: 17px;
    color: var(--pjh-gold);
    transition: transform .25s ease;
}

.pjh-footer__nav a:hover,
.pjh-footer__nav a.is-active {
    color: var(--pjh-gold-soft);
    padding-left: 20px;
}

.pjh-footer__nav a:hover::before,
.pjh-footer__nav a.is-active::before {
    height: 20px;
}

.pjh-footer__nav a:hover svg {
    transform: translateX(3px);
}

.pjh-location-list {
    display: grid;
    gap: 8px;
}

.pjh-location {
    overflow: hidden;
    border: 1px solid rgba(199, 154, 80, .22);
    border-radius: 10px;
    background: rgba(255,255,255,.018);
    transition: border-color .25s ease, background-color .25s ease;
}

.pjh-location.is-open {
    border-color: rgba(199, 154, 80, .5);
    background: rgba(255,255,255,.03);
}

.pjh-location__toggle,
.pjh-location__static {
    width: 100%;
    min-height: 42px;
    padding: 9px 13px;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
}

.pjh-location__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.pjh-location__static {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d8d3cc;
}

.pjh-location__static > svg,
.pjh-location__chevron {
    width: 16px;
    height: 16px;
    color: var(--pjh-gold);
    transition: transform .25s ease;
}

.pjh-location.is-open .pjh-location__chevron {
    transform: rotate(180deg);
}

.pjh-location__name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--pjh-gold-soft);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 14px;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.pjh-location__name svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.pjh-location__panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .32s ease;
}

.pjh-location.is-open .pjh-location__panel {
    grid-template-rows: 1fr;
}

.pjh-location__panel-inner {
    overflow: hidden;
    padding: 0 14px;
    color: var(--pjh-muted);
    font-size: 13px;
    line-height: 1.55;
}

.pjh-location.is-open .pjh-location__panel-inner {
    padding-bottom: 15px;
}

.pjh-location__panel-inner p {
    margin: 4px 0 10px 28px;
}

.pjh-location__phones {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 14px;
    margin-left: 28px;
}

.pjh-location__phones a {
    color: #f0e8dc;
}

.pjh-location__phones a:hover,
.pjh-map-link:hover {
    color: var(--pjh-gold-soft);
}

.pjh-map-link {
    display: inline-block;
    margin: 11px 0 0 28px;
    color: var(--pjh-gold);
    font-weight: 600;
}

.pjh-footer__contactbar {
    display: grid;
    grid-template-columns: 1fr 1fr 1.1fr;
    align-items: center;
    gap: 0;
    margin: 0 12px;
    border: 1px solid var(--pjh-line);
    border-radius: 22px;
    background: rgba(255,255,255,.018);
}

.pjh-contact-item,
.pjh-socials {
    min-height: 86px;
    padding: 18px 32px;
}

.pjh-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    border-right: 1px solid var(--pjh-line-soft);
    transition: background-color .25s ease;
}

.pjh-contact-item:hover {
    background: rgba(255,255,255,.025);
}

.pjh-contact-icon {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(199, 154, 80, .72);
    border-radius: 50%;
    color: var(--pjh-gold-soft);
}

.pjh-contact-icon svg {
    width: 21px;
    height: 21px;
}

.pjh-contact-item span:last-child {
    display: grid;
    gap: 3px;
}

.pjh-contact-item small {
    color: var(--pjh-muted);
    font-size: 12px;
}

.pjh-contact-item strong {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.pjh-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pjh-socials > span {
    margin-right: 6px;
    color: var(--pjh-muted);
    font-size: 13px;
}

.pjh-socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(199, 154, 80, .7);
    border-radius: 50%;
    color: var(--pjh-gold-soft);
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.pjh-socials a:hover {
    color: #090b0a;
    background: var(--pjh-gold-soft);
    transform: translateY(-2px);
}

.pjh-footer__legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 22px 16px 0;
    color: #8e8c88;
    font-size: 12px;
}

.pjh-footer__legal p {
    margin: 0;
}

.pjh-footer__legal div {
    display: flex;
    gap: 22px;
}

.pjh-footer__legal a:hover {
    color: var(--pjh-gold-soft);
}

.pjh-footer a:focus-visible,
.pjh-footer button:focus-visible {
    outline: 2px solid var(--pjh-gold-soft);
    outline-offset: 3px;
}

@media (max-width: 1240px) {
    .pjh-footer__main {
        grid-template-columns: minmax(0, 1.15fr) minmax(250px, .75fr);
    }

    .pjh-footer__locations {
        grid-column: 1 / -1;
    }

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

    .pjh-location.is-open {
        grid-column: span 1;
    }
}

@media (max-width: 900px) {
    .pjh-footer__shell {
        width: min(100% - 28px, 900px);
        padding-top: 44px;
    }

    .pjh-footer__main {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 32px;
    }

    .pjh-footer__locations {
        grid-column: auto;
    }

    .pjh-brand-row {
        grid-template-columns: 150px 1fr;
    }

    .pjh-footer__contactbar {
        grid-template-columns: 1fr 1fr;
    }

    .pjh-socials {
        grid-column: 1 / -1;
        min-height: 72px;
        border-top: 1px solid var(--pjh-line-soft);
    }
}

@media (max-width: 680px) {
    .pjh-footer__shell {
        width: min(100% - 20px, 680px);
        padding-top: 28px;
    }

    .pjh-footer__main {
        padding-inline: 0;
    }

    .pjh-brand-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pjh-brand-logo,
    .pjh-brand-wordmark {
        width: 160px;
        min-height: 120px;
        margin: 0 auto;
    }

    .pjh-brand-copy {
        font-size: 14px;
    }

    .pjh-section-title {
        margin-top: 34px;
    }

    .pjh-section-title h2 {
        font-size: 13px;
        letter-spacing: .24em;
    }

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

    .pjh-gallery__item:nth-child(4),
    .pjh-gallery__item:nth-child(5) {
        display: none;
    }

    .pjh-outline-button {
        width: 100%;
    }

    .pjh-footer__nav,
    .pjh-footer__locations {
        padding: 20px 16px;
        border-radius: 18px;
    }

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

    .pjh-footer__contactbar {
        grid-template-columns: 1fr;
        margin-inline: 0;
    }

    .pjh-contact-item {
        border-right: 0;
        border-bottom: 1px solid var(--pjh-line-soft);
    }

    .pjh-socials {
        grid-column: auto;
        flex-wrap: wrap;
    }

    .pjh-socials > span {
        flex: 0 0 100%;
        margin: 0 0 4px;
        text-align: center;
    }

    .pjh-footer__legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .pjh-footer__legal div {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pjh-footer *,
    .pjh-footer *::before,
    .pjh-footer *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}
.pjh-footer-bottom {
    position: relative;
    margin: 0 12px;
    padding: 30px 34px 22px;
    border: 1px solid rgba(199, 154, 80, 0.28);
    border-radius: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.012)
        );
    box-shadow:
        0 22px 60px rgba(0, 0, 0, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
    overflow: hidden;
}

.pjh-footer-bottom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(221, 185, 120, 0.8),
        transparent
    );
}

.pjh-footer-bottom__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.pjh-footer-bottom__links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border: 1px solid rgba(199, 154, 80, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.018);
    color: #c9c4bc;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.pjh-footer-bottom__links a:hover {
    color: #0a0d0c;
    border-color: #ddb978;
    background: #ddb978;
    transform: translateY(-2px);
}

.pjh-footer-bottom__divider {
    width: 100%;
    height: 1px;
    margin: 28px 0 20px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(199, 154, 80, 0.3),
        transparent
    );
}

.pjh-footer-bottom__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pjh-footer-bottom__copyright {
    margin: 0;
    color: #8f8d88;
    font-size: 12px;
    line-height: 1.6;
}

.pjh-footer-bottom__copyright a {
    color: #d9d2c7;
    font-weight: 600;
}

.pjh-footer-bottom__copyright a:hover {
    color: #ddb978;
}

.pjh-footer-bottom__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pjh-footer-bottom__socials > span {
    margin-right: 8px;
    color: #a9a59f;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pjh-footer-bottom__socials a {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(199, 154, 80, 0.55);
    border-radius: 50%;
    color: #ddb978;
    background: rgba(255, 255, 255, 0.015);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.pjh-footer-bottom__socials a svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pjh-footer-bottom__socials a:first-of-type svg {
    fill: currentColor;
    stroke: none;
}

.pjh-footer-bottom__socials a:hover {
    color: #080b0a;
    border-color: #ddb978;
    background: #ddb978;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .pjh-footer-bottom {
        padding: 26px 22px 20px;
    }

    .pjh-footer-bottom__bar {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 680px) {
    .pjh-footer-bottom {
        margin: 0;
        padding: 22px 14px 18px;
        border-radius: 18px;
    }

    .pjh-footer-bottom__links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .pjh-footer-bottom__links a {
        min-height: 44px;
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 11px;
        text-align: center;
    }

    .pjh-footer-bottom__divider {
        margin: 22px 0 18px;
    }

    .pjh-footer-bottom__socials {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pjh-footer-bottom__socials > span {
        flex: 0 0 100%;
        margin: 0 0 6px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .pjh-footer-bottom__links {
        grid-template-columns: 1fr;
    }
}

