/*
Theme Name: Platinum Sands Company - KSA
Theme URI: https://platinumsands.com/
Author: Tariq Hussain
Description: Elegant responsive WordPress theme for Platinum Sands with editable header, hero slider, homepage sections, socials, newsletter and footer settings.
Version: PSC-001A
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: platinum-sands-luxury
*/

:root {
    --ps-bg-main: #f5f5f3;
    --ps-bg-alt: #eaeaea;
    --ps-text: #5f5f5f;
    --ps-heading: #2f2f2f;
    --ps-footer: #344454;
    --ps-footer-text: #ffffff;
    --ps-border: rgba(47,47,47,0.12);
    --ps-max: 1360px;
    --ps-font: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
    --ps-transition: 0.3s ease;
    --ps-slider-font-family: Futura, "Futura PT", "Century Gothic", Arial, sans-serif;
    --ps-slider-heading-size: 46px;
    --ps-slider-text-size: 17px;
    --ps-slider-button-size: 11px;
    --ps-slider-font-weight: 500;
    --ps-slider-manual-text: #ffffff;
    --ps-slider-manual-button: #ffffff;
    --ps-slider-auto-text: #ffffff;
    --ps-slider-auto-button: #ffffff;
    --ps-slider-hover-bg: #ffffff;
    --ps-slider-hover-text: #1f2430;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--ps-font);
    background: var(--ps-bg-main);
    color: var(--ps-text);
    line-height: 1.7;
    font-size: 16px;
}
body.ps-no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button, input, textarea { font: inherit; }

.ps-container {
    width: min(calc(100% - 40px), var(--ps-max));
    margin: 0 auto;
}

.ps-section {
    padding: 84px 0;
}

.ps-section-alt { background: var(--ps-bg-alt); }

h1, h2, h3, h4, h5, h6 {
    color: var(--ps-heading);
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 16px;
}

h1 { font-size: clamp(34px, 6vw, 62px); }
h2 { font-size: clamp(28px, 4vw, 42px); }
h3 { font-size: clamp(22px, 3vw, 28px); }
p { margin: 0 0 16px; }

.ps-button,
.wp-block-button__link,
button,
input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 26px;
    border: 1px solid var(--ps-heading);
    color: var(--ps-heading);
    background: transparent;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 400;
    transition: all var(--ps-transition);
}

.ps-button:hover,
.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
    background: var(--ps-heading);
    color: #fff;
}

.ps-preloader {
    position: fixed;
    inset: 0;
    background: var(--ps-bg-main);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .45s ease, visibility .45s ease;
}
.ps-preloader.is-hidden { opacity: 0; visibility: hidden; }
.ps-diamond {
    width: 46px;
    height: 46px;
    border: 2px solid var(--ps-heading);
    transform: rotate(45deg);
    animation: psDiamond 1.5s infinite ease-in-out;
}
@keyframes psDiamond {
    0%, 100% { transform: rotate(45deg) scale(1); opacity: .75; }
    50% { transform: rotate(45deg) scale(1.18); opacity: 1; }
}

.ps-info-bar {
    background: var(--ps-bg-alt);
    border-bottom: 1px solid var(--ps-border);
    color: var(--ps-text);
    font-size: 13px;
}
.ps-info-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    flex-wrap: wrap;
}
.ps-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.ps-info-item span { opacity: .78; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(245,245,243,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--ps-border);
}
.ps-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    min-height: 92px;
}
.ps-header-left { justify-self: start; }
.ps-header-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ps-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--ps-border);
    background: transparent;
    padding: 0;
}
.ps-menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: var(--ps-heading);
    margin: 4px auto;
}

.main-navigation .menu,
.ps-footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-navigation .menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}
.main-navigation a,
.ps-footer-menu a {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    color: var(--ps-heading);
}
.main-navigation a::after,
.ps-footer-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ps-transition);
}
.main-navigation a:hover::after,
.ps-footer-menu a:hover::after { transform: scaleX(1); }

.site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-branding .custom-logo-link,
.site-branding .ps-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.site-branding .custom-logo {
    width: auto;
    max-width: 192px;
    max-height: 64px;
}
.ps-logo-fallback {
    color: var(--ps-heading);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 18px;
    font-weight: 500;
}

.ps-socials {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.ps-social-link {
    width: 42px;
    height: 42px;
    border: 1px solid var(--ps-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all var(--ps-transition);
}
.ps-social-link:hover {
    background: var(--ps-heading);
    color: #fff;
    border-color: var(--ps-heading);
}

.ps-hero {
    position: relative;
    overflow: hidden;
}
.ps-slides {
    position: relative;
    min-height: clamp(520px, 74vh, 860px);
}
.ps-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .8s ease, transform .8s ease;
}
.ps-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}
.ps-slide-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
    filter: brightness(1.02) contrast(1.08) saturate(1.04);
}
.ps-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 22%, rgba(255,255,255,.22), transparent 34%),
        radial-gradient(circle at 78% 18%, rgba(255,255,255,.12), transparent 28%),
        linear-gradient(115deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,0) 36%, rgba(255,255,255,.05) 60%, rgba(0,0,0,.08) 100%);
    mix-blend-mode: screen;
    opacity: .9;
}
.ps-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(27, 33, 42, .36), rgba(27, 33, 42, .12));
}
.ps-slide.is-light-bg::after {
    background: linear-gradient(90deg, rgba(255,255,255,.34), rgba(255,255,255,.10));
}
.ps-slide-content {
    position: relative;
    z-index: 1;
    min-height: clamp(520px, 74vh, 860px);
    display: flex;
    align-items: center;
}
.ps-slide-box {
    max-width: 680px;
    color: var(--ps-slider-manual-text);
    padding: 110px 0 84px;
    font-family: var(--ps-slider-font-family);
}
.ps-slide-box h1,
.ps-slide-box h2 {
    color: var(--ps-slider-manual-text);
    font-family: var(--ps-slider-font-family);
    font-size: clamp(28px, 4.2vw, var(--ps-slider-heading-size));
    font-weight: var(--ps-slider-font-weight);
    letter-spacing: .02em;
}
.ps-slide-box p {
    color: var(--ps-slider-manual-text);
    font-size: clamp(14px, 1.55vw, var(--ps-slider-text-size));
    max-width: 560px;
    font-family: var(--ps-slider-font-family);
}
.ps-slide.is-dark-bg {
    --ps-slider-auto-text: #ffffff;
    --ps-slider-auto-button: #ffffff;
    --ps-slider-hover-bg: #ffffff;
    --ps-slider-hover-text: #1f2430;
}
.ps-slide.is-light-bg {
    --ps-slider-auto-text: #1f2430;
    --ps-slider-auto-button: #1f2430;
    --ps-slider-hover-bg: #1f2430;
    --ps-slider-hover-text: #ffffff;
}
body.ps-slider-auto-contrast .ps-slide-box,
body.ps-slider-auto-contrast .ps-slide-box h1,
body.ps-slider-auto-contrast .ps-slide-box h2,
body.ps-slider-auto-contrast .ps-slide-box p {
    color: var(--ps-slider-auto-text);
}
.ps-hero-button {
    margin-top: 8px;
    font-size: var(--ps-slider-button-size);
}
body.ps-slider-auto-contrast .ps-hero-button {
    color: var(--ps-slider-auto-button) !important;
    border-color: var(--ps-slider-auto-button) !important;
    background: transparent !important;
}
body.ps-slider-auto-contrast .ps-hero-button:hover {
    background: var(--ps-slider-hover-bg) !important;
    color: var(--ps-slider-hover-text) !important;
    border-color: var(--ps-slider-hover-bg) !important;
}
body:not(.ps-slider-auto-contrast) .ps-hero-button {
    color: var(--ps-slider-manual-button) !important;
    border-color: var(--ps-slider-manual-button) !important;
    background: transparent !important;
}
body:not(.ps-slider-auto-contrast) .ps-hero-button:hover {
    background: var(--ps-slider-manual-button) !important;
    color: #1f2430 !important;
    border-color: var(--ps-slider-manual-button) !important;
}
.ps-slide-box.is-fade { animation: psFadeUp .8s ease; }
.ps-slide-box.is-left { animation: psSlideInLeft .8s ease; }
.ps-slide-box.is-right { animation: psSlideInRight .8s ease; }
@keyframes psFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes psSlideInLeft {
    from { opacity: 0; transform: translateX(-28px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes psSlideInRight {
    from { opacity: 0; transform: translateX(28px); }
    to { opacity: 1; transform: translateX(0); }
}
.ps-hero-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 26px;
    z-index: 5;
}
.ps-hero-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}
.ps-dot {
    width: 13px;
    height: 13px;
    border: 1px solid rgba(255,255,255,.7);
    transform: rotate(45deg);
    background: transparent;
    padding: 0;
}
.ps-dot.is-active { background: #fff; }
body.ps-slider-auto-contrast .ps-slide.is-light-bg ~ .ps-hero-controls .ps-dot {
    border-color: rgba(31,36,48,.55);
}
body.ps-slider-auto-contrast .ps-slide.is-light-bg ~ .ps-hero-controls .ps-dot.is-active {
    background: #1f2430;
}

.ps-intro-wrap,
.ps-home-feature {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr);
    gap: 38px;
    align-items: center;
}
.ps-home-blocks {
    display: grid;
    gap: 56px;
}
.ps-home-feature-media img {
    aspect-ratio: 5 / 4;
    object-fit: cover;
}
.ps-home-feature-content {
    background: transparent;
    padding: 16px 10px;
}
.ps-home-feature-content .ps-button { margin-top: 12px; }

.ps-newsletter {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 34px;
    align-items: center;
}
.ps-newsletter-form {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.ps-newsletter-form input[type="email"] {
    flex: 1 1 280px;
    min-height: 48px;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.08);
    color: #fff;
}
.ps-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,.72); }
.ps-newsletter-form .ps-button {
    border-color: #fff;
    color: #fff;
}
.ps-newsletter-form .ps-button:hover {
    background: #fff;
    color: var(--ps-footer);
}

.site-footer {
    background: var(--ps-footer);
    color: var(--ps-footer-text);
}
.ps-footer-upper {
    padding: 56px 0 34px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.ps-footer-upper h2,
.ps-footer-upper p,
.ps-footer-upper h3 { color: #fff; }
.ps-footer-lower {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}
.ps-footer-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}
.ps-footer-menu a,
.ps-copyright { color: #fff; }

.ps-page-wrap,
.ps-post-wrap,
.ps-archive-wrap {
    padding: 80px 0;
}

.ps-card,
.ps-empty,
.ps-contact-card {
    background: #fff;
    border: 1px solid var(--ps-border);
    padding: 28px;
}

@media (max-width: 1100px) {
    .main-navigation .menu { gap: 18px; }
    .site-branding .custom-logo { max-width: 144px; max-height: 52px; }
}

@media (max-width: 980px) {
    .ps-header-inner {
        grid-template-columns: auto 1fr auto;
        min-height: 80px;
    }
    .ps-header-left { order: 1; }
    .site-branding { order: 2; }
    .ps-header-right {
        order: 3;
        position: relative;
    }
    .ps-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1002;
    }
    .main-navigation {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        left: auto;
        width: auto;
        min-width: 270px;
        max-width: min(88vw, 340px);
        background: #f5f5f3;
        padding: 22px 18px 18px;
        border: 1px solid var(--ps-border);
        border-radius: 20px;
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity var(--ps-transition), transform var(--ps-transition), visibility var(--ps-transition);
        box-shadow: 0 18px 40px rgba(0,0,0,.10);
        overflow: visible;
        z-index: 1001;
    }
    .main-navigation.is-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .main-navigation .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .main-navigation a {
        font-size: 12px;
        line-height: 1.35;
    }
    .ps-header-right .ps-socials { display: none; }
    .main-navigation .ps-socials-mobile {
        display: flex;
        gap: 12px;
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid var(--ps-border);
        flex-wrap: wrap;
        justify-content: center;
    }
    .ps-intro-wrap,
    .ps-home-feature,
    .ps-newsletter {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 981px) {
    .main-navigation .ps-socials-mobile { display: none; }
}

@media (max-width: 767px) {
    body { font-size: 15px; }
    .ps-container { width: min(calc(100% - 24px), var(--ps-max)); }
    .ps-section { padding: 62px 0; }
    .ps-info-inner { justify-content: center; gap: 12px; }
    .ps-info-item { font-size: 12px; }
    .site-branding .custom-logo { max-width: 108px; max-height: 42px; }
    .ps-slide-content,
    .ps-slides { min-height: 72vh; }
    .ps-slide-box { padding: 84px 0 76px; }
    .ps-footer-lower { grid-template-columns: 1fr; }
}

.ps-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 16px;
}
.ps-icon svg,
.ps-social-link svg {
    width: 100%;
    height: 100%;
    display: block;
}
.ps-info-inner {
    justify-content: space-between;
    gap: 20px;
}
.ps-info-left,
.ps-info-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
.ps-info-email-only {
    min-width: 30px;
    justify-content: center;
}
.ps-info-item {
    color: var(--ps-text);
    transition: opacity var(--ps-transition);
}
.ps-info-item:hover { opacity: .8; }
.ps-info-item span:last-child { opacity: 1; }
.ps-social-link {
    color: var(--ps-heading);
    overflow: hidden;
}
.ps-social-link svg {
    width: 20px;
    height: 20px;
}
.ps-footer-nav-wrap {
    background: var(--ps-bg-alt);
    border-top: 1px solid var(--ps-border);
    border-bottom: 1px solid var(--ps-border);
}
.ps-footer-bottom-menu {
    list-style: none;
    margin: 0;
    padding: 18px 0;
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    justify-content: center;
}
.ps-footer-bottom-menu a {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    color: var(--ps-heading);
}
.ps-footer-bottom-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--ps-transition);
}
.ps-footer-bottom-menu a:hover::after { transform: scaleX(1); }

@media (max-width: 980px) {
    .ps-info-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    .ps-info-right { justify-content: flex-start; }
}

@media (max-width: 767px) {
    .ps-info-inner,
    .ps-info-left,
    .ps-info-right {
        align-items: center;
        justify-content: center;
        width: 100%;
    }
     .ps-footer-bottom-menu {
        gap: 14px;
        padding: 16px 0;
    }
    .ps-social-link {
        width: 44px;
        height: 44px;
    }
    .ps-social-link svg {
        width: 22px;
        height: 22px;
    }
}


/* PSC-001A refinements */
.ps-info-inner {justify-content: space-between; gap: 20px;}
.ps-info-left,.ps-info-right {display:flex; align-items:center; gap:18px; flex-wrap:wrap;}
.ps-info-item {font-size:14px; color:var(--ps-text);}
.ps-icon {width:18px; height:18px; flex:0 0 18px;}
.ps-info-email-only .ps-icon {width:19px; height:19px;}
.ps-socials {gap: 18px;}
.ps-social-link {width: 36px; height: 36px; border: 0 !important; background: transparent !important; color: var(--ps-heading);}
.ps-social-link svg {width: 22px; height: 22px;}
.ps-social-link:hover {background: transparent !important; border-color: transparent !important; color: var(--ps-footer); opacity: .82; transform: translateY(-1px);}
.site-footer {background: var(--ps-bg-alt); color: var(--ps-text);}
.ps-footer-upper {padding: 72px 0 68px; border-bottom: 0;}
.ps-footer-main {display:grid; grid-template-columns:1.2fr .95fr .95fr .8fr; gap:46px; align-items:start;}
.ps-footer-col h2,.ps-footer-col h3 {color:var(--ps-heading); font-size:17px; letter-spacing:.08em; text-transform:uppercase; margin-bottom:20px;}
.ps-footer-col h2::after,.ps-footer-col h3::after {content:""; display:block; width:38px; height:1px; background:rgba(47,47,47,.32); margin-top:12px;}
.ps-footer-branding .custom-logo,.ps-footer-branding .ps-logo-fallback {display:inline-flex; width:auto; max-width:250px; margin-bottom:22px;}
.ps-footer-branding .ps-logo-fallback {font-size:26px; letter-spacing:.22em;}
.ps-footer-about {max-width:330px; margin-bottom:28px;}
.ps-newsletter-box {margin-top:26px;}
.ps-newsletter-box h3 {margin-bottom:16px;}
.ps-newsletter-form {display:flex; gap:0; align-items:stretch; max-width:400px;}
.ps-newsletter-form input[type="email"] {flex:1 1 auto; min-height:48px; padding:12px 16px; border:1px solid rgba(47,47,47,.18); border-right:0; background:transparent; color:var(--ps-text);}
.ps-newsletter-form input[type="email"]::placeholder {color: rgba(95,95,95,.8);}
.ps-newsletter-form .ps-button {min-width:140px; border-color: rgba(47,47,47,.18); background: var(--ps-footer); color:#fff;}
.ps-newsletter-form .ps-button:hover {background: var(--ps-heading); color:#fff; border-color: var(--ps-heading);}
.ps-footer-contact {display:grid; gap:18px;}
.ps-footer-contact-item {display:grid; grid-template-columns:22px 1fr; gap:14px; align-items:start; color:var(--ps-text);}
.ps-footer-links {list-style:none; margin:0; padding:0; display:grid; gap:14px;}
.ps-footer-links a {display:inline-flex; align-items:center; gap:10px; color:var(--ps-text);}
.ps-footer-links a:hover {color:var(--ps-heading);}
.ps-footer-links a::before {content:"›"; font-size:18px; line-height:1; opacity:.8;}
.ps-footer-socials {margin-bottom:34px;}
.ps-footer-socials .ps-socials {gap:20px;}
.ps-footer-socials .ps-social-link {width:38px; height:38px;}
.ps-footer-socials .ps-social-link svg {width:24px; height:24px;}
.ps-footer-bottom-strip {background: var(--ps-footer); color: #fff; text-align:center; padding:18px 0;}
.ps-copyright {color:#fff; font-size:15px;}
@media (max-width:1200px){.ps-footer-main{grid-template-columns:1.1fr 1fr 1fr;}.ps-footer-col.ps-footer-follow{grid-column:1 / -1;}}
@media (max-width:980px){.ps-footer-main{grid-template-columns:1fr;}.ps-footer-upper{padding:58px 0 54px;}}
@media (max-width:767px){.ps-newsletter-form{flex-direction:column; max-width:100%;}.ps-newsletter-form input[type="email"]{border-right:1px solid rgba(47,47,47,.18);}.ps-newsletter-form .ps-button{width:100%;}.ps-social-link{width:34px; height:34px;}}


/* PSC-001A final desktop refinements */
:root {
    --ps-font: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
}
body {
    letter-spacing: .02em;
}
.ps-preloader {
    background: rgba(245,245,243,.98);
}
.ps-preloader-mark {
    width: 108px;
    height: auto;
    display: block;
    filter: grayscale(100%) brightness(.35);
    animation: psLogoReveal 1.8s ease-in-out infinite;
}
@keyframes psLogoReveal {
    0%, 100% { filter: grayscale(100%) brightness(.35); opacity: .82; transform: scale(1); }
    50% { filter: grayscale(0%) brightness(1); opacity: 1; transform: scale(1.02); }
}
.ps-info-inner {
    min-height: 48px;
}
.ps-info-item {
    gap: 10px;
    font-size: 13px;
    letter-spacing: .04em;
}
.ps-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border: 1px solid rgba(47,47,47,.18);
    border-radius: 50%;
    background: transparent;
}
.ps-icon svg {
    width: 16px;
    height: 16px;
}
.ps-info-email-only .ps-icon {
    width: 32px;
    height: 32px;
}
.ps-header-inner {
    min-height: 102px;
    gap: 28px;
}
.main-navigation .menu {
    gap: 22px;
}
.main-navigation a,
.ps-footer-bottom-menu a {
    font-size: 11px;
    letter-spacing: .18em;
}
.site-branding .custom-logo {
    max-width: 260px;
    max-height: 84px;
}
.ps-socials {
    gap: 14px;
}
.ps-social-link {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(47,47,47,.22) !important;
    border-radius: 50%;
    background: transparent !important;
    color: var(--ps-heading);
}
.ps-social-link svg {
    width: 18px;
    height: 18px;
}
.ps-social-link:hover {
    background: var(--ps-heading) !important;
    color: #fff;
    border-color: var(--ps-heading) !important;
    opacity: 1;
    transform: translateY(-1px);
}
.ps-intro-wrap {
    align-items: start;
    gap: 50px;
}
.ps-home-blocks {
    gap: 44px;
}
.ps-home-feature {
    grid-template-columns: minmax(0,1fr) minmax(0,1fr);
    gap: 44px;
    align-items: stretch;
}
.ps-home-feature.is-reverse .ps-home-feature-media { order: 2; }
.ps-home-feature.is-reverse .ps-home-feature-content { order: 1; }
.ps-home-feature-media,
.ps-home-feature-content {
    min-height: 420px;
}
.ps-home-feature-media img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
}
.ps-home-feature-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 38px 42px;
    background: transparent;
    text-align: left;
}
.ps-home-feature-copy {
    max-width: 460px;
    width: 100%;
}
.ps-home-feature-copy .ps-eyebrow {
    display: inline-block;
    margin: 0 0 14px;
    color: var(--ps-text);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 11px;
}
.ps-home-feature-copy h3 {
    font-size: clamp(28px, 3vw, 38px);
    margin-bottom: 18px;
}
.ps-home-feature-copy p {
    max-width: 440px;
    margin-bottom: 22px;
}
.ps-button {
    min-height: 46px;
    padding: 12px 24px;
    letter-spacing: .18em;
}
.ps-footer-upper {
    padding: 64px 0 56px;
}
.ps-footer-main {
    grid-template-columns: 1.2fr .95fr .95fr;
    gap: 42px;
}
.ps-footer-col h3 {
    font-size: 14px;
    letter-spacing: .14em;
}
.ps-footer-about,
.ps-footer-contact-item,
.ps-footer-links a,
.ps-newsletter-form input[type="email"] {
    font-size: 14px;
}
.ps-footer-bottom-strip {
    padding: 14px 0;
}
.ps-copyright {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
}
@media (max-width: 1200px) {
    .site-branding .custom-logo { max-width: 220px; max-height: 72px; }
    .ps-home-feature,
    .ps-intro-wrap { gap: 34px; }
    .ps-home-feature-media,
    .ps-home-feature-content { min-height: 380px; }
}
@media (max-width: 980px) {
    .site-branding .custom-logo { max-width: 180px; max-height: 62px; }
    .ps-header-inner { min-height: 88px; }
    .ps-home-feature,
    .ps-home-feature.is-reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .ps-home-feature.is-reverse .ps-home-feature-media,
    .ps-home-feature.is-reverse .ps-home-feature-content { order: initial; }
    .ps-home-feature-media,
    .ps-home-feature-content { min-height: auto; }
    .ps-home-feature-content { padding: 16px 6px 8px; }
    .ps-footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
    .ps-info-inner,
    .ps-info-left,
    .ps-info-right {
        align-items: center;
        justify-content: center;
    }
    .ps-info-item { font-size: 12px; }
    .ps-icon { width: 30px; height: 30px; flex-basis: 30px; }
    .site-branding .custom-logo { max-width: 140px; max-height: 48px; }
    .ps-social-link { width: 38px; height: 38px; }
    .ps-home-feature-copy h3 { font-size: 28px; }
    .ps-home-feature-copy .ps-eyebrow { font-size: 10px; }
    .ps-copyright { letter-spacing: .12em; font-size: 10px; }
}


/* PSC-001A hero screen-fit fix - reduced slider height */
.ps-hero {
    position: relative;
    min-height: clamp(420px, 64vh, 620px);
}
.ps-slides,
.ps-slide,
.ps-slide-content {
    min-height: clamp(420px, 64vh, 620px);
}
.ps-slide {
    height: clamp(420px, 64vh, 620px);
}
.ps-slide-media {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.ps-slide-box {
    width: 100%;
    max-width: 720px;
    padding: 64px 0 64px;
}
@media (max-width: 980px) {
    .ps-hero,
    .ps-slides,
    .ps-slide,
    .ps-slide-content {
        min-height: clamp(380px, 56vh, 520px);
        height: clamp(380px, 56vh, 520px);
    }
    .ps-slide-box {
        padding: 52px 0 52px;
        max-width: 620px;
    }
}
@media (max-width: 767px) {
    .ps-hero,
    .ps-slides,
    .ps-slide,
    .ps-slide-content {
        min-height: clamp(300px, 42vh, 380px);
        height: auto;
    }
    .ps-slide-media {
        background-position: center center;
    }
    .ps-slide-box {
        padding: 42px 0 52px;
        max-width: 100%;
    }
}
   PSC FINAL REQUESTED FIXES - MENU / FONTS / TEXT / DOTS
   Added to keep header/menu consistent across all pages.
   ========================================================= */
:root {
    --ps-font: "Futura", "Futura PT", "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    --ps-slider-font-family: "Futura", "Futura PT", "Avenir", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

.site-header,
.site-header *,
.main-navigation,
.main-navigation .menu,
.main-navigation .menu li,
.main-navigation a,
.ps-footer-bottom-menu a {
    font-family: var(--ps-font) !important;
}

.main-navigation a,
.ps-footer-bottom-menu a {
    font-size: 11px !important;
    line-height: 1.35 !important;
    letter-spacing: .18em !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    text-align: left !important;
    white-space: nowrap;
}

.main-navigation .menu {
    gap: 22px !important;
}

@media (max-width: 1100px) {
    .main-navigation .menu {
        gap: 18px !important;
    }
}

@media (max-width: 980px) {
    .main-navigation a {
        font-size: 11px !important;
        line-height: 1.4 !important;
        letter-spacing: .16em !important;
    }
}

.ps-page-wrap p,
.ps-post-wrap p,
.ps-archive-wrap p,
.entry-content p,
.ps-home-feature-copy p,
.ps-footer-about,
.ps-contact-card p,
.ps-policy-content p,
.ps-brands-intro p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.82;
    word-spacing: normal;
    hyphens: auto;
}

h1, h2, h3, h4, h5, h6,
.ps-button,
.wp-block-button__link,
button,
input[type="submit"],
.main-navigation a,
.ps-footer-menu a,
.ps-footer-bottom-menu a,
.ps-social-link,
.ps-info-item {
    text-align: initial;
}

.ps-hero-controls {
    bottom: 22px !important;
}

.ps-hero-dots {
    justify-content: center;
}

.ps-dot {
    width: 10px !important;
    height: 10px !important;
    min-width: 10px !important;
    min-height: 10px !important;
    border: 1px solid rgba(255,255,255,.78) !important;
    background: transparent !important;
    border-radius: 50% !important;
    transform: none !important;
    padding: 0 !important;
    cursor: pointer;
}

.ps-dot.is-active {
    background: #ffffff !important;
}

body.ps-slider-auto-contrast .ps-slide.is-light-bg ~ .ps-hero-controls .ps-dot {
    border-color: rgba(47,47,47,.62) !important;
}

body.ps-slider-auto-contrast .ps-slide.is-light-bg ~ .ps-hero-controls .ps-dot.is-active {
    background: #2f2f2f !important;
}
