/**
 * Phoenix Neat Space Cleaning — front-end theme
 * Palette: navy #162c44, brown #916b44, gold accent, white/off-white
 */

 :root {
    --pns-navy: #162c44;
    --pns-navy-dark: #0b1832;
    --pns-header-bar: #ffffff;
    --pns-header-gold: #d4af37;
    --pns-hero-gold: #d4a035;
    --pns-hero-overlay: #0b1832cc;
    --pns-hero-overlay-navy: #1a2b48;
    --pns-brown: #916b44;
    --pns-gold: #c9a227;
    --pns-gold-light: #e8d48b;
    --pns-white: #ffffff;
    --pns-cream: #f6f4ef;
    --pns-muted: #5c6b7a;
    --pns-font: "DM Sans", system-ui, -apple-system, sans-serif;
    --pns-heading: "Libre Baskerville", Georgia, serif;
    --pns-hero-serif: "Playfair Display", Georgia, serif;
    --pns-radius: 6px;
    --pns-shadow: 0 12px 40px rgba(22, 44, 68, 0.12);
    --pns-max: 1140px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--pns-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--pns-navy);
    background: var(--pns-white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

a {
    color: var(--pns-brown);
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
    color: var(--pns-gold);
}

h1,
h2,
h3,
h4 {
    font-family: var(--pns-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--pns-navy);
}

h1 {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--pns-muted);
}

p:last-child {
    margin-bottom: 0;
}

.container-pns {
    width: 100%;
    max-width: var(--pns-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

/* ——— Header ——— */
.site-header {
    position: relative;
    z-index: 1000;
    background: transparent;
}

.site-header__bar {
    width: 100%;
    background: var(--pns-header-bar);
    box-shadow: 0 1px 0 rgba(12, 9, 9, 0.2);
    transition: box-shadow 0.35s ease, background 0.35s ease;
}

.site-header.is-sticky .site-header__bar {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.site-header.is-sticky.is-sticky-animating .site-header__bar {
    animation: pns-header-stick-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes pns-header-stick-in {
    from {
        transform: translateY(-100%);
        opacity: 0.65;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1rem;
    padding: 0.65rem 0;
    min-height: 4.25rem;
}

.site-logo {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.logo-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    max-width: 100%;
    text-decoration: none !important;
}

.logo-brand__img {
    display: block;
    width: 100%;
    max-width: min(320px, 52vw);
    height: auto;
    max-height: clamp(80px, 10vw, 56px);
    object-fit: contain;
    object-position: left center;
    margin-left: 10px;
}

.logo-brand__text {
    display: inline;
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.05rem, 3.8vw, 1.65rem);
    line-height: 1.15;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.logo-brand__phoenix {
    color: var(--pns-white);
}

.logo-brand__neat {
    color: var(--pns-header-gold);
    margin-left: 0.2em;
}

.logo-brand--stacked .logo-brand__text {
    white-space: normal;
}

.logo-brand--stacked .logo-brand__neat {
    display: block;
    margin-left: 0;
    margin-top: 0.15rem;
}

.logo-brand--stacked .logo-brand__img--mobile {
    max-width: 220px;
    margin: 0 auto 0.75rem;
    object-position: center;
}

.logo-text-fallback {
    font-family: var(--pns-heading);
    font-size: 1.15rem;
    color: var(--pns-navy);
    font-weight: 600;
    line-height: 1.2;
    max-width: 220px;
}

.main-nav {
    display: none;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.2rem clamp(0.65rem, 1.5vw, 1.35rem);
}

.main-nav a {
    color: var(--pns-navy);
    font-weight: 600;
    font-size: clamp(0.78rem, 1.1vw, 0.9rem);
    text-transform: none;
    letter-spacing: 0.02em;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
    color: var(--pns-header-gold);
    border-bottom-color: transparent;
}

.main-nav a.active {
    color: var(--pns-header-gold);
    border-bottom-color: var(--pns-header-gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.header-cta-phone {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    border-radius: 5px !important;
    padding: 0.45rem 0.75rem !important;
    font-size: clamp(0.68rem, 2.8vw, 0.8rem) !important;
    text-transform: none !important;
    letter-spacing: 0.02em !important;
    background: var(--pns-header-gold) !important;
    background-image: none !important;
    box-shadow: 0 2px 12px rgba(212, 175, 55, 0.35) !important;
    gap: 0.35rem !important;
    max-width: 100%;
}

.header-cta-phone i {
    font-size: 0.85em;
}

.btn-pns-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.35rem;
    background: linear-gradient(135deg, var(--pns-gold) 0%, #a88420 100%);
    color: var(--pns-navy-dark) !important;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: var(--pns-radius);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-pns-gold:hover {
    color: var(--pns-navy-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201, 162, 39, 0.45);
}

.btn-pns-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 1.2rem;
    border: 2px solid var(--pns-gold);
    color: var(--pns-navy) !important;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--pns-radius);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.btn-pns-outline:hover {
    background: var(--pns-gold);
    color: var(--pns-navy-dark) !important;
}

.mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--pns-radius);
    color: var(--pns-navy-dark);
    background: rgba(255, 255, 255, 0.06);
    cursor: pointer;
    font-size: 1.25rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.55);
    color: var(--pns-header-gold);
}

body.nav-open {
    overflow: hidden;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--pns-navy);
    color: var(--pns-white);
    z-index: 2000;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

body.nav-open .mobile-menu-overlay {
    transform: translateX(0);
}

.mobile-menu-overlay .close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--pns-gold-light);
}

.mobile-nav {
    list-style: none;
    margin: 3rem 0 0;
    padding: 0;
}

.mobile-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--pns-white) !important;
    font-weight: 600;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.mobile-nav a.active {
    color: var(--pns-header-gold) !important;
}

.mobile-menu-cta {
    margin-top: 2rem;
}

.mobile-menu-cta .btn-pns-gold {
    width: 100%;
}

/* ——— Home hero (banner) ——— */
.home-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.5rem 0 5rem;
    overflow: hidden;
    background: var(--pns-navy);
    color: var(--pns-white);
}

.home-hero--no-image .home-hero__media {
    background: linear-gradient(165deg, var(--pns-navy-dark) 0%, var(--pns-navy) 55%, #0a1524 100%);
}

.home-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--pns-hero-overlay);
    pointer-events: none;
}

.home-hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.home-hero__content {
    position: relative;
    z-index: 4;
    width: min(92vw, 68vw);
    max-width: 52rem;
    margin: 0 auto; 
    padding-left: clamp(1rem, 4vw, 1.5rem);
    padding-right: clamp(1rem, 4vw, 1.5rem);
}

@media (max-width: 767.98px) {
    .home-hero__content {
        width: min(94vw, 100%);
        max-width: 26rem;
    }
}

.home-hero__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0 0 1.35rem;
    font-family: var(--pns-font);
    font-size: clamp(0.8125rem, 1.35vw, 0.9375rem);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--pns-hero-gold);
}

.home-hero__badge-icon {
    color: var(--pns-hero-gold);
    font-size: 1.05rem;
}

.home-hero__title {
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(2rem, 5.5vw, 4.5rem);
    line-height: 1.12;
    color: var(--pns-white);
    margin: 0 0 1.75rem;
    letter-spacing: -0.02em;
}

.home-hero__title-accent { 
    font-style: normal;
    background-image: linear-gradient(135deg, #e8b430, #e8ca7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.home-hero__lead {
    font-family: var(--pns-font);
    font-size: clamp(1.05rem, 2.1vw, 1.25rem);
    font-weight: 500;
    line-height: 1.55;
    color: #ffffff;
    max-width: 36rem; 
}

.home-hero__ctas { 
    flex-wrap: wrap;
    gap: 1.15rem 1.35rem;
    justify-content: center;
    align-items: center;
}

.home-hero__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.95rem 1.65rem;
    font-family: var(--pns-font);
    font-size: clamp(0.9rem, 1.45vw, 1.0625rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: none;
    text-decoration: none !important;
    border-radius: 6px;
    margin-bottom: 15px;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s, color 0.2s, border-color 0.2s;
}

.home-hero__btn--primary {
    background: var(--pns-hero-gold);
    color: var(--pns-hero-overlay-navy) !important;
    border: 2px solid transparent;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.home-hero__btn--primary:hover {
    background: #e0b24a;
    color: #0f1728 !important;
    transform: translateY(-1px);
}

.home-hero__btn-chevron {
    font-size: 0.65rem;
    opacity: 0.95;
}

.home-hero__btn--ghost {
    background: transparent;
    color: var(--pns-hero-gold) !important;
    border: 2px solid var(--pns-hero-gold);
}

.home-hero__btn--ghost:hover {
    background: rgba(212, 160, 53, 0.12);
    color: #f0d78a !important;
    border-color: #e0b24a;
}

/* Slider variant */
.home-hero--slider {
    display: block;
    padding: 0;
    min-height: 88vh;
}

.home-hero--slider .hero-slider,
.home-hero--slider .slick-list,
.home-hero--slider .slick-track {
    min-height: 88vh;
    height: 100%;
}

.home-hero__slide {
    position: relative;
    min-height: 88vh !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    outline: none;
}

.home-hero__slide .home-hero__media {
    position: absolute;
    inset: 0;
}

.home-hero__slide .home-hero__content {
    flex-shrink: 0;
    position: relative;
    z-index: 4;
}

.home-hero--slider .slick-slide {
    position: relative;
}

.home-hero--slider .slick-slide .home-hero__media {
    z-index: 0;
}

.home-hero--slider .slick-dotted.slick-slider {
    margin-bottom: 0;
}

.home-hero--slider .slick-dots {
    bottom: 1.75rem;
    z-index: 4;
}

.home-hero--slider .slick-dots li button:before {
    color: #fff;
    opacity: 0.45;
    font-size: 10px;
}

.home-hero--slider .slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--pns-hero-gold);
}

@media (max-width: 575.98px) {
    .home-hero__btn {
        width: 100%;
        max-width: 22rem;
    }

    .home-hero__ctas {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ——— Sections ——— */
.section-pns {
    padding: 3.5rem 0;
}

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

/* Home: quote / call CTA band */
.home-quote-cta {
    background: #ffffff;
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.home-quote-cta__inner {
    max-width: 42rem;
    margin: 0 auto;
    padding-left: clamp(0.75rem, 3vw, 1.25rem);
    padding-right: clamp(0.75rem, 3vw, 1.25rem);
}

.home-quote-cta__title {
    margin: 0 auto 0.9rem;
    max-width: 22ch;
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.45rem, 3.8vw, 2.5rem);
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: inherit;
}

.home-quote-cta__title-dark {
    color: #0b1b32;
}

.home-quote-cta__title-gold {
    color: #d4a017;
}

.home-quote-cta__lead {
    margin: 0 auto 1.85rem;
    max-width: 32rem;
    font-family: var(--pns-font);
    font-size: clamp(0.95rem, 2.1vw, 1.0625rem);
    font-weight: 500;
    line-height: 1.55;
    color: var(--pns-muted);
}

.home-quote-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.85rem 1.1rem;
}

.home-quote-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.8rem 1.65rem;
    font-family: var(--pns-font);
    font-weight: 700;
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
    text-decoration: none !important;
    border-radius: 6px;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-quote-cta__btn--call {
    text-transform: none;
    letter-spacing: 0.02em;
    color: #0f1a2e !important;
    background: linear-gradient(180deg, #e8c24a, #d4a017);
    border: none;
    box-shadow: 0 4px 16px rgba(22, 44, 68, 0.12);
}

.home-quote-cta__btn--call:hover {
    color: #070d18 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 160, 23, 0.35);
}

.home-quote-cta__btn--text {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--pns-navy) !important;
    background: #ffffff;
    border: 2px solid #e8b430;
    box-shadow: 0 2px 8px rgba(22, 44, 68, 0.06);
}

.home-quote-cta__btn--text:hover {
    background: rgba(232, 180, 48, 0.08);
    border-color: #d4a017;
    color: #0a1524 !important;
}

@media (max-width: 575.98px) {
    .home-quote-cta__actions {
        flex-direction: column;
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
    }

    .home-quote-cta__btn {
        width: 100%;
    }

    .home-quote-cta__title {
        max-width: none;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0 0 0.5rem;
}

.section-heading .sub {
    color: var(--pns-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Cards grid */
.grid-cards {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .grid-cards.cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-cards.cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .grid-cards.cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-cards.cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pns-card {
    background: var(--pns-white);
    border-radius: var(--pns-radius);
    padding: 1.5rem;
    box-shadow: 0 4px 24px rgba(22, 44, 68, 0.08);
    border: 1px solid rgba(22, 44, 68, 0.06);
    height: 100%;
}

.pns-card h3 {
    margin-top: 0;
    font-size: 1.1rem;
}

.pns-card .icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.2);
    color: var(--pns-brown);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

/* ——— Home: “What we offer” services row (matches premium layout) ——— */
.offers-section {
    background: #f9f8f3;
    padding-top: clamp(3rem, 6vw, 4.5rem);
    padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.offers-section__heading {
    text-align: center;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}

.offers-section__title {
    margin: 0;
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.65rem, 4.2vw, 2.65rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--pns-navy);
}

.offers-section__title-accent {
    display: inline-block;
    font-style: normal;
    background-image: linear-gradient(135deg, #e8b430, #e8ca7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.offers-cards {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    grid-template-columns: 1fr;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

@media (min-width: 576px) {
    .offers-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .offers-cards {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .offers-cards {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.offers-card {
    background: #ffffff;
    border-radius: 12px;
    padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.5rem);
    box-shadow: 0 10px 30px rgb(0 0 0 / 15%);
    border: 1px solid rgb(9 18 28 / 9%);
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    height: 100%;
}

a.offers-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

a.offers-card:focus-visible {
    outline: 2px solid #e8b430;
    outline-offset: 3px;
}

.offers-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgb(22 44 68 / 32%);
}

.offers-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #ffffff;
    background: var(--pns-navy);
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

.offers-card:hover .offers-card__icon {
    background: linear-gradient(145deg, #e8b430, #d4a035);
    box-shadow: 0 8px 20px rgba(212, 160, 53, 0.35);
}

.offers-card__title {
    margin: 0 0 0.5rem;
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--pns-navy);
    line-height: 1.25;
}

.offers-card__text {
    margin: 0;
    font-family: var(--pns-font);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--pns-muted);
}

.offers-section__footer {
    margin-top: 0.5rem;
}

.offers-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2.5rem;
    font-family: var(--pns-font);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none !important;
    color: var(--pns-navy) !important;
    background: #ffffff;
    border: 2px solid #e8b430;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(22, 44, 68, 0.06);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease,
        box-shadow 0.2s ease;
}

.offers-section__btn:hover {
    background: #d4a017;
    border-color: #d4a017;
    color: #0f1a2e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 160, 23, 0.35);
}

.offers-section__btn:focus-visible {
    outline: 2px solid var(--pns-navy);
    outline-offset: 3px;
}

/* Areas / pills */
.area-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.area-pill {
    padding: 0.45rem 1rem;
    background: var(--pns-white);
    border: 1px solid rgba(22, 44, 68, 0.15);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pns-navy);
}

.section-pns.alt-bg .area-pill {
    background: var(--pns-white);
}

/* ——— Home: Our Service Areas (navy grid) ——— */
.service-areas-section {
    background: linear-gradient(135deg, #0b1832, #142952, #2a416f);
    color: #ffffff;
    padding: 7rem 2rem;
}

/* Override global h2 navy — must stay light on dark section */
.service-areas-section h2.service-areas__title {
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    max-width: 48rem;
    text-align: center;
    font-family: var(--pns-hero-serif) !important;
    font-weight: 700 !important;
    font-size: clamp(1.75rem, 4.2vw, 2.65rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

.service-areas__title-accent {
    display: inline-block;
    font-style: normal;
    background-image: linear-gradient(135deg, #e8b430, #e8ca7d);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.service-areas__grid {
    display: grid;
    gap: clamp(0.65rem, 2vw, 1.15rem);
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .service-areas__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .service-areas__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .service-areas__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

.service-areas__cell {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 3rem;
    padding: 0.65rem 1rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.service-areas__cell:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
}

.service-areas__cell i {
    flex-shrink: 0;
    font-size: 1rem;
    color: #e8b430;
}

.service-areas__cell span {
    font-family: var(--pns-font);
    font-weight: 600;
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    line-height: 1.3;
    color: #ffffff;
}

/* Home: credibility cards */
.credibility-section__head {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.credibility-grid {
    display: grid;
    gap: clamp(1rem, 2.5vw, 1.35rem);
    grid-template-columns: 1fr;
    align-items: stretch;
}

@media (min-width: 768px) {
    .credibility-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.credibility-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.35rem);
    border: 1px solid rgba(22, 44, 68, 0.08);
    box-shadow: 0 10px 30px rgba(22, 44, 68, 0.06);
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.credibility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(22, 44, 68, 0.1);
}

.credibility-card__icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--pns-navy);
    color: #e8b430;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.credibility-card__title {
    margin: 0 0 0.5rem;
    font-family: var(--pns-hero-serif);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 700;
    line-height: 1.25;
    color: var(--pns-navy);
}

.credibility-card__text {
    margin: 0;
    font-family: var(--pns-font);
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--pns-muted);
}

/* Credibility strip */
.cred-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cred-item {
    padding: 1rem 1.5rem;
    background: var(--pns-navy);
    color: var(--pns-white);
    border-radius: var(--pns-radius);
    min-width: 200px;
}

.cred-item strong {
    display: block;
    color: var(--pns-gold);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.25rem;
}

/* Clients / “Who we serve” */
.clients-showcase {
    background: linear-gradient(317deg, #0b1832, #142952, #2a416f);
    color: rgba(255, 255, 255, 0.92);
}

.clients-showcase .section-heading h2 {
    color: #ffffff !important;
}

.clients-showcase .section-heading .sub {
    color: rgba(255, 255, 255, 0.78);
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.clients-showcase .section-heading {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.client-grid {
    display: grid;
    gap: clamp(0.75rem, 2vw, 1.15rem);
    grid-template-columns: 1fr;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 480px) {
    .client-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.client-tile {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(4.5rem, 12vw, 5.75rem);
    padding: clamp(1rem, 2.5vw, 1.35rem) clamp(0.85rem, 2vw, 1.15rem);
    background: #ffffff;
    border: 1px solid rgba(22, 44, 68, 0.1);
    border-radius: 10px;
    text-align: center;
    font-family: var(--pns-font);
    font-weight: 700;
    font-size: clamp(0.8125rem, 2.4vw, 0.95rem);
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: var(--pns-navy);
    box-shadow: 0 8px 26px rgba(22, 44, 68, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.client-tile:hover {
    transform: translateY(-2px);
    border-color: rgba(232, 180, 48, 0.45);
    box-shadow: 0 12px 32px rgba(22, 44, 68, 0.1);
}

.clients-showcase__footer {
    margin-top: clamp(1.75rem, 3vw, 2.25rem);
}

.clients-showcase__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    max-width: min(100%, 26rem);
    margin: 0 auto;
    padding: 0.9rem 1.65rem;
    font-family: var(--pns-font);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.35;
    text-align: center;
    text-transform: none;
    text-decoration: none !important;
    color: var(--pns-navy) !important;
    background: #ffffff;
    border: 2px solid #e8b430;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease,
        box-shadow 0.2s ease;
}

.clients-showcase__btn:hover {
    background: #d4a017;
    border-color: #d4a017;
    color: #0f1a2e !important;
    transform: translateY(-2px); 
}

.clients-showcase__btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

@media (max-width: 575.98px) {
    .clients-showcase__btn {
        width: 100%;
        max-width: 22rem;
    }
}

/* Testimonials — “What clients say” (3-up grid + dots only) */
.testimonials-section__head {
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.testimonials-section__eyebrow {
    margin: 0 0 0.35rem;
    font-family: var(--pns-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a67c00;
}

.testimonials-slider-wrap {
    position: relative;
    max-width: 72rem;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.testimonials-slider {
    overflow: visible;
}

.testimonials-slider .slick-list {
    margin: 0;
    padding: 0.5rem 0 0.25rem;
    overflow: hidden;
    border-radius: 0;
}

.testimonials-slider .slick-slide {
    padding: 0 clamp(0.4rem, 1.2vw, 0.65rem);
    height: auto;
    outline: none;
}

.testimonials-slider .slick-slide > div {
    height: 100%;
}

.testimonials-slider .slick-track {
    display: flex !important;
    align-items: stretch;
}

/* Dots only (no arrows) */
.testimonials-slider-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: clamp(1.25rem, 2.5vw, 1.75rem);
    padding: 0.35rem 0;
    min-height: 0;
}

.testimonials-slider-nav .slick-dots {
    order: 0;
    position: static;
    bottom: auto;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 0.35rem 0.5rem;
}

.testimonials-slider-nav .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}

.testimonials-slider-nav .slick-dots li button {
    width: 10px;
    height: 10px;
    padding: 0;
    border-radius: 999px;
    border: none;
    background: rgba(22, 44, 68, 0.18);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.testimonials-slider-nav .slick-dots li button:before {
    display: none;
}

.testimonials-slider-nav .slick-dots li.slick-active button {
    background: #e8b430;
    transform: scale(1.15);
}

.testimonials-slider-nav .slick-dots li button:focus-visible {
    outline: 2px solid var(--pns-navy);
    outline-offset: 2px;
}

.testimonial-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 17.5rem;
    padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1.15rem, 2.5vw, 1.5rem);
    padding-right: clamp(1.35rem, 3vw, 2.25rem);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(22, 44, 68, 0.12);
    border-radius: 18px;
    border-left: 4px solid #e8b430;
    /* box-shadow: 0 10px 36px rgba(22, 44, 68, 0.1), 0 2px 8px rgba(22, 44, 68, 0.06); */
    text-align: left;
    transition: box-shadow 0.28s ease, border-color 0.2s ease, transform 0.22s ease;
}

.testimonial-card__deco {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    font-size: clamp(1.75rem, 4vw, 2.15rem);
    line-height: 1;
    color: var(--pns-navy);
    opacity: 0.08;
    pointer-events: none;
}

.testimonial-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem 0.75rem;
    margin-bottom: 0.85rem;
}

.testimonial-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.testimonial-card__score {
    font-family: var(--pns-font);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--pns-navy);
    letter-spacing: 0.02em;
}

.testimonial-card__badge {
    flex-shrink: 0;
    padding: 0.2rem 0.55rem;
    font-family: var(--pns-font);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(22, 44, 68, 0.55);
    background: rgba(22, 44, 68, 0.06);
    border-radius: 999px;
    border: 1px solid rgba(22, 44, 68, 0.08);
}

.testimonial-card:hover {
    /* box-shadow: 0 18px 48px rgba(22, 44, 68, 0.14), 0 2px 10px rgba(22, 44, 68, 0.08); */
    border-color: rgba(22, 44, 68, 0.16);
    transform: translateY(-2px);
}

.testimonial-card__stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0;
    font-size: 0.78rem;
    color: #e8b430;
    letter-spacing: 0.02em;
}

.testimonial-card__quote {
    margin: 0 0 auto;
    padding: 0 0 1rem;
    border: 0;
    flex: 1 1 auto;
    quotes: none;
}

.testimonial-card__quote p {
    margin: 0;
    font-family: var(--pns-font);
    font-size: clamp(0.95rem, 2.1vw, 1.05rem);
    font-style: normal;
    font-weight: 500;
    line-height: 1.62;
    color: #3d4d5c;
}

.testimonial-card__foot {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(22, 44, 68, 0.08);
}

.testimonial-card__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.65rem;
    height: 2.65rem;
    border-radius: 50%;
    overflow: hidden;
    font-family: var(--pns-font);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--pns-navy);
    background: rgba(232, 180, 48, 0.28);
    border: none;
}

.testimonial-card__avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.testimonial-card__cite {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--pns-font);
    font-style: normal;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    color: var(--pns-navy);
}

.testimonial-card__label {
    font-family: var(--pns-font);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(22, 44, 68, 0.48);
}

/* Contact / booking — background photo + navy overlay. Place file at:
   public/assets/website/images/booking-section-bg.jpeg */
.booking-section {
    --booking-bg-image: url("../images/booking-section-bg.jpeg");
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.92);
}

.booking-section__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: #0b1524;
    background-image: var(--booking-bg-image);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.booking-section__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(29deg, rgb(22 44 68 / 75%) 0%, rgba(22, 44, 68, 0.82) 38%, rgb(11 24 42 / 84%) 70%, rgb(7 14 26 / 83%) 100%);
}

.booking-section__container {
    position: relative;
    z-index: 1;
}

.booking-layout {
    display: grid;
    gap: clamp(1.75rem, 5vw, 3rem);
    align-items: stretch;
}

@media (min-width: 768px) {
    .booking-layout {
        gap: clamp(2rem, 5vw, 3.25rem);
    }
}

@media (min-width: 992px) {
    .booking-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
        align-items: start;
        gap: clamp(2.25rem, 4vw, 3.5rem);
    }
}

/* Intro column — light copy on dark */
.booking-intro {
    padding: clamp(0.15rem, 1.5vw, 0.35rem) 0;
}

.booking-intro__eyebrow {
    margin: 0 0 0.45rem;
    font-family: var(--pns-font);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8c85c;
}

.booking-intro__title {
    margin: 0 0 0.9rem;
    font-family: var(--pns-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.15rem);
    font-weight: 600;
    line-height: 1.18;
    color: #ffffff;
}

.booking-intro__lead {
    margin: 0 0 1rem;
    max-width: 36rem;
    font-family: var(--pns-font);
    font-size: clamp(0.95rem, 2.2vw, 1.08rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.booking-intro__trust {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0 0 1.35rem;
    padding: 0.45rem 0.85rem;
    max-width: 100%;
    font-family: var(--pns-font);
    font-size: clamp(0.78rem, 1.8vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.booking-intro__trust i {
    color: #e8b430;
    font-size: 0.9rem;
}

.booking-intro__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.booking-intro__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.85rem 1rem;
    font-family: var(--pns-font);
    font-size: clamp(0.88rem, 2vw, 0.97rem);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    border-left: 3px solid #e8b430;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.booking-intro__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    margin-top: 0.02rem;
    font-size: 0.88rem;
    color: #0f1a2e;
    background: linear-gradient(145deg, #f0d78c 0%, #e8b430 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Form card — high contrast on top of imagery */
.booking-form-card {
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #e8b430;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.35), 0 12px 32px rgba(22, 44, 68, 0.12);
    padding: clamp(1.35rem, 4vw, 2rem);
}

@media (min-width: 576px) {
    .booking-form-card {
        padding: clamp(1.55rem, 4vw, 2.25rem);
    }
}

.booking-form-card__header {
    margin-bottom: clamp(1.2rem, 3vw, 1.7rem);
    padding-bottom: 1.05rem;
    border-bottom: 1px solid rgba(22, 44, 68, 0.09);
}

.booking-form-card__title {
    margin: 0 0 0.45rem;
    font-family: var(--pns-heading);
    font-size: clamp(1.2rem, 2.5vw, 1.45rem);
    font-weight: 600;
    color: var(--pns-navy);
}

.booking-form-card__sub {
    margin: 0;
    max-width: 36rem;
    font-family: var(--pns-font);
    font-size: clamp(0.82rem, 1.9vw, 0.92rem);
    line-height: 1.55;
    color: var(--pns-muted);
}

.booking-form-card__req {
    color: #b45309;
    font-weight: 700;
}

.booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.booking-field__label {
    font-family: var(--pns-font);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--pns-navy);
}

.booking-field__star {
    color: #b45309;
    font-weight: 800;
}

.booking-field__optional {
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(22, 44, 68, 0.45);
}

.booking-form .form-control.booking-field__input,
.booking-form .booking-field__input {
    border: 1px solid rgba(22, 44, 68, 0.14);
    border-radius: 12px;
    padding: 0.72rem 1.05rem;
    min-height: 3.05rem;
    font-size: 1rem;
    font-family: var(--pns-font);
    color: var(--pns-navy);
    background: #f6f7f9;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form .booking-field__input::placeholder {
    color: rgba(22, 44, 68, 0.36);
}

.booking-form .booking-field__textarea {
    min-height: 10rem;
    resize: vertical;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    line-height: 1.55;
}

.booking-form .booking-field__input:hover {
    border-color: rgba(22, 44, 68, 0.22);
    background: #ffffff;
}

.booking-form .booking-field__input:focus {
    border-color: var(--pns-brown);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
    outline: none;
}

.booking-form__actions {
    margin-top: clamp(1.35rem, 3vw, 1.75rem);
    padding-top: 1.15rem;
    border-top: 1px solid rgba(22, 44, 68, 0.08);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.9rem;
}

@media (min-width: 576px) {
    .booking-form__actions {
        align-items: center;
        text-align: center;
    }
}

.booking-form__submit {
    width: 100%;
    min-height: 3.2rem;
    padding: 0.78rem 1.6rem;
    border-radius: 12px;
    font-size: 0.84rem;
    gap: 0.55rem;
    box-shadow: 0 6px 22px rgba(201, 162, 39, 0.45);
}

@media (min-width: 576px) {
    .booking-form__submit {
        width: auto;
        min-width: 16rem;
        padding-left: 2.1rem;
        padding-right: 2.1rem;
    }
}

.booking-form__submit:focus-visible {
    outline: 2px solid var(--pns-navy);
    outline-offset: 3px;
}

.booking-form__privacy {
    margin: 0;
    max-width: 26rem;
    font-family: var(--pns-font);
    font-size: 0.74rem;
    line-height: 1.5;
    color: rgba(22, 44, 68, 0.52);
}

@media (min-width: 576px) {
    .booking-form__privacy {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Google reviews — home section */
.google-reviews-section {
    background: linear-gradient(180deg, #f4f6f9 0%, #ffffff 42%, #fafbfc 100%);
}

.google-reviews-section__head {
    margin-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

.google-reviews-section__eyebrow {
    margin: 0 0 0.35rem;
    font-family: var(--pns-font);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a67c00;
}

.google-reviews-card {
    max-width: 58rem;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    border: 1px solid rgba(22, 44, 68, 0.08);
    box-shadow: 0 20px 56px rgba(22, 44, 68, 0.1), 0 2px 8px rgba(22, 44, 68, 0.04);
    overflow: hidden;
}

.google-reviews-card__top {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.15rem, 3vw, 1.5rem) clamp(1.1rem, 3vw, 1.75rem);
    background: linear-gradient(135deg, rgba(22, 44, 68, 0.04) 0%, rgba(22, 44, 68, 0.02) 100%);
    border-bottom: 1px solid rgba(22, 44, 68, 0.07);
}

@media (min-width: 576px) {
    .google-reviews-card__top {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }
}

.google-reviews-card__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
}

.google-reviews-card__g-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    font-size: 1.25rem;
    color: #4285f4;
    background: #ffffff;
    border: 1px solid rgba(22, 44, 68, 0.1);
    box-shadow: 0 4px 14px rgba(66, 133, 244, 0.18);
}

.google-reviews-card__brand-title {
    display: block;
    font-family: var(--pns-font);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--pns-navy);
    letter-spacing: 0.01em;
}

.google-reviews-card__brand-sub {
    display: block;
    margin-top: 0.15rem;
    font-family: var(--pns-font);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--pns-muted);
    line-height: 1.35;
}

.google-reviews-card__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.6rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.google-reviews-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    font-family: var(--pns-font);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(22, 44, 68, 0.72);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(22, 44, 68, 0.1);
    border-radius: 999px;
}

.google-reviews-chip i {
    font-size: 0.65rem;
    color: #c9a227;
}

.google-reviews-card__grid {
    display: grid;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    padding: clamp(1.1rem, 3vw, 1.65rem);
    align-items: stretch;
}

@media (min-width: 768px) {
    .google-reviews-card__grid {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: clamp(1.35rem, 3vw, 2rem);
        padding: clamp(1.35rem, 3vw, 1.85rem);
    }
}

@media (min-width: 992px) {
    .google-reviews-card__grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    }
}

/* Embed slot — works as placeholder or iframe host */
.reviews-embed-wrap {
    border-radius: 14px;
    overflow: hidden;
    min-height: 0;
}

.google-reviews-embed-slot.reviews-embed-wrap {
    display: flex;
    flex-direction: column;
    min-height: clamp(220px, 42vw, 300px);
    background: linear-gradient(160deg, #fafbfd 0%, #f0f3f8 100%);
    border: 2px dashed rgba(22, 44, 68, 0.14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.google-reviews-embed-slot__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex: 1 1 auto;
    gap: 0.65rem;
    padding: clamp(1.25rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
}

.google-reviews-embed-slot__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    font-size: 1.1rem;
    color: var(--pns-navy);
    background: rgba(22, 44, 68, 0.06);
    border: 1px solid rgba(22, 44, 68, 0.08);
}

.google-reviews-embed-slot__title {
    margin: 0;
    font-family: var(--pns-font);
    font-weight: 700;
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--pns-navy);
}

.google-reviews-embed-slot__text {
    margin: 0;
    max-width: 28rem;
    font-family: var(--pns-font);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.55;
    color: var(--pns-muted);
}

.google-reviews-btn {
    margin-top: 0.35rem;
    width: 100%;
    max-width: 20rem;
    min-height: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 10px;
    font-size: 0.8rem;
}

@media (min-width: 480px) {
    .google-reviews-btn {
        width: auto;
        min-width: 13rem;
    }
}

.google-reviews-aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.85rem;
    padding: clamp(1rem, 2.5vw, 1.35rem);
    border-radius: 14px;
    background: linear-gradient(165deg, rgba(22, 44, 68, 0.04) 0%, rgba(22, 44, 68, 0.02) 100%);
    border: 1px solid rgba(22, 44, 68, 0.08);
}

.google-reviews-aside__title {
    margin: 0;
    font-family: var(--pns-heading);
    font-size: clamp(1.05rem, 2.2vw, 1.2rem);
    font-weight: 600;
    color: var(--pns-navy);
}

.google-reviews-aside__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.google-reviews-aside__list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    font-family: var(--pns-font);
    font-size: clamp(0.88rem, 2vw, 0.95rem);
    line-height: 1.45;
    color: #3d4d5c;
}

.google-reviews-aside__list i {
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    color: #c9a227;
}

.google-reviews-aside__note {
    margin: 0.25rem 0 0;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(22, 44, 68, 0.08);
    font-family: var(--pns-font);
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(22, 44, 68, 0.55);
}

.reviews-embed-wrap iframe {
    width: 100%;
    min-height: clamp(260px, 50vw, 360px);
    border: 0;
    display: block;
}

/* Page hero (inner pages) */
.page-hero {
    background: linear-gradient(135deg,#0b1832,#142952,#2a416f);
    color: var(--pns-white);
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.page-hero h1 {
    color: var(--pns-white);
    margin: 0;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0.75rem auto 0;
    max-width: 560px;
}

/* Get a quote — contact panel */
.quote-contact-section {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.quote-contact-panel {
    max-width: 52rem;
    margin: 0 auto;
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3.5vw, 2.5rem);
    background: var(--pns-white);
    border-radius: 14px;
    box-shadow: var(--pns-shadow);
    text-align: center;
}

.quote-contact-panel__title {
    margin: 0 0 clamp(1.5rem, 4vw, 2.25rem);
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.55rem, 4vw, 2.35rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--pns-navy);
}

.quote-contact-panel__title-accent {
    color: #d4a017;
}

.quote-contact-panel__cards {
    margin-bottom: clamp(1.35rem, 3.5vw, 2rem);
}

.quote-contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 100%;
    padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1rem, 2.5vw, 1.25rem);
    background: #f5f4f0;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

a.quote-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(22, 44, 68, 0.1);
}

.quote-contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--pns-navy);
    color: var(--pns-white);
    font-size: 1.15rem;
}

.quote-contact-card__label {
    font-family: var(--pns-font);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pns-navy);
}

.quote-contact-card__value {
    font-family: var(--pns-font);
    font-size: clamp(1rem, 2.2vw, 1.125rem);
    font-weight: 700;
    color: #d4a017;
}

.quote-contact-panel__walkthrough {
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
    background: var(--pns-navy);
    border-radius: 12px;
    color: var(--pns-white);
}

.quote-contact-panel__walkthrough-title {
    margin: 0 0 0.65rem;
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.2rem, 3vw, 1.65rem);
    line-height: 1.25;
    color: var(--pns-white);
}

.quote-contact-panel__walkthrough-text {
    margin: 0 auto clamp(1.25rem, 3vw, 1.65rem);
    max-width: 36rem;
    font-family: var(--pns-font);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

.quote-contact-panel__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-height: 48px;
    padding: 0.85rem 1.75rem;
    font-family: var(--pns-font);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    color: var(--pns-navy) !important;
    background: linear-gradient(180deg, #e8c24a, #d4a017);
    border-radius: 8px;
    text-decoration: none !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.quote-contact-panel__cta:hover {
    color: #070d18 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(212, 160, 23, 0.35);
}

/* Careers — requirements + application */
.careers-section {
    padding-top: clamp(2.5rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.75rem, 6vw, 4rem);
}

.careers-section__stack {
    display: flex;
    flex-direction: column;
    gap: clamp(1.25rem, 3vw, 1.75rem);
}

.careers-card {
    padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.35rem, 3.5vw, 2rem);
    background: var(--pns-white);
    border-radius: 14px;
    box-shadow: var(--pns-shadow);
}

.careers-card__title {
    margin: 0 0 clamp(1.15rem, 3vw, 1.5rem);
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.35rem, 3.2vw, 1.75rem);
    line-height: 1.25;
    color: var(--pns-navy);
}

.careers-requirements {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.careers-requirements__item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: var(--pns-font);
    font-size: clamp(0.92rem, 2vw, 1rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--pns-muted);
}

.careers-requirements__icon {
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1.15rem;
    line-height: 1;
    color: #d4a017;
}

.careers-form__fields {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.careers-form .booking-field__label {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}

.careers-form__actions {
    margin-top: clamp(1.35rem, 3vw, 1.65rem);
}

.careers-form__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 3.15rem;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: none;
    box-shadow: 0 6px 22px rgba(201, 162, 39, 0.4);
}

.careers-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(212, 160, 23, 0.45);
}

/* About page — hero (center lift gradient + split title) */
.about-page-hero {
    background: linear-gradient(135deg,#0b1832,#142952,#2a416f);
    padding: clamp(3rem, 9vw, 5.5rem) 0 clamp(2.75rem, 6vw, 4.25rem);
    text-align: center;
}

.about-page-hero__inner {
    max-width: 52rem;
    margin: 0 auto;
}

.about-page-hero__title {
    margin: 0;
    font-family: var(--pns-heading);
    font-size: clamp(1.85rem, 4.8vw, 2.85rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0.02em;
}

.about-page-hero__about {
    color: #ffffff;
    margin-right: 0.35rem;
}

.about-page-hero__brand {
    background-image: linear-gradient(135deg, #e8b430, #e8ca7d);
    background-clip: text;
    color: transparent;
}

@media (max-width: 520px) {
    .about-page-hero__brand {
        display: block;
        margin-top: 0.2rem;
        margin-right: 0;
    }
}

.about-page-hero__tagline {
    margin: 1.2rem auto 0;
    max-width: 30rem;
    font-family: var(--pns-font);
    font-size: clamp(0.95rem, 2.2vw, 1.08rem);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: 0.03em;
    color: #ffffff;
}

/* Our Story — cream page, white card */
.about-story-section.section-pns {
    background: #f9f8f3;
    padding-top: clamp(2.5rem, 6vw, 3.75rem);
    padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.about-story-card {
    max-width: 52rem;
    margin: 0 auto;
    padding: clamp(1.75rem, 5vw, 2.75rem) clamp(1.35rem, 4vw, 2.5rem);
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(22, 44, 68, 0.06);
    box-shadow: 0 18px 48px rgba(22, 44, 68, 0.08), 0 4px 14px rgba(22, 44, 68, 0.04);
}

.about-story-card__title {
    margin: 0 0 clamp(1.15rem, 3vw, 1.5rem);
    font-family: var(--pns-heading);
    font-size: clamp(1.45rem, 3vw, 1.85rem);
    font-weight: 700;
    color: #1a2332;
}

.about-story-card__title-accent {
    color: #c5a04d;
}

.about-story-card__body p {
    margin: 0 0 1.15rem;
    font-family: var(--pns-font);
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.75;
    color: #4a5568;
}

.about-story-card__body p:last-child {
    margin-bottom: 0;
}

.about-story-card__emphasis {
    margin-top: 1.35rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(22, 44, 68, 0.08);
    font-size: clamp(0.98rem, 2.1vw, 1.08rem) !important;
    line-height: 1.55 !important;
    color: var(--pns-navy) !important;
}

.about-story-card__emphasis strong {
    font-weight: 700;
}

/* What Sets Us Apart */
.about-apart-section.section-pns {
    background: #ffffff;
    padding-top: clamp(2.5rem, 6vw, 3.75rem);
    padding-bottom: clamp(2.5rem, 6vw, 3.75rem);
}

.about-apart-section__title {
    margin: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    font-family: var(--pns-heading);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
    font-weight: 700;
    text-align: center;
    color: var(--pns-navy);
}

.about-apart-section__title-accent {
    color: #c5a04d;
}

.about-apart-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .about-apart-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .about-apart-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.about-apart-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: #f9f8f6;
    border: 1px solid rgba(22, 44, 68, 0.1);
    border-radius: 12px;
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    height: 100%;
}

.about-apart-card:hover {
    box-shadow: 0 12px 36px rgba(22, 44, 68, 0.08);
    transform: translateY(-2px);
}

.about-apart-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    font-size: 1rem;
    color: #ffffff;
    background: var(--pns-navy);
}

.about-apart-card__name {
    margin: 0 0 0.5rem;
    font-family: var(--pns-heading);
    font-size: clamp(1.05rem, 2vw, 1.15rem);
    font-weight: 700;
    color: var(--pns-navy);
    line-height: 1.25;
}

.about-apart-card__desc {
    margin: 0;
    font-family: var(--pns-font);
    font-size: clamp(0.88rem, 1.9vw, 0.95rem);
    line-height: 1.55;
    color: #718096;
}

/* About CTA band */
.about-cta-band {
    background: linear-gradient(135deg,#0b1832,#142952,#2a416f);
    padding: clamp(2.75rem, 7vw, 4.25rem) 0;
    text-align: center;
}

.about-cta-band__inner {
    max-width: 40rem;
    margin: 0 auto;
}

.about-cta-band__title {
    margin: 0 0 clamp(1.5rem, 4vw, 2rem);
    font-family: var(--pns-heading);
    font-weight: 700;
    font-size: clamp(1.45rem, 3.5vw, 2.15rem);
    line-height: 1.25;
}

.about-cta-band__title-line {
    display: block;
    color: #ffffff;
}

.about-cta-band__title-accent {
    display: block;
    margin-top: 0.15rem;
    color: #e2b355;
}

.about-cta-band__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
}

@media (min-width: 540px) {
    .about-cta-band__actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.78rem 1.65rem;
    border-radius: 10px;
    font-family: var(--pns-font);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease,
        border-color 0.2s ease;
    min-height: 3rem;
}

.about-cta-btn--primary {
    background: linear-gradient(135deg, #d4af37 0%, #b8922a 100%);
    color: #0f172a !important;
    border: none;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.35);
}

.about-cta-btn--primary:hover {
    color: #0f172a !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
}

.about-cta-btn--ghost {
    background: transparent;
    color: #e2b355 !important;
    border: 2px solid #d4af37;
}

.about-cta-btn--ghost:hover {
    background: rgba(212, 175, 55, 0.12);
    color: #f0e6c8 !important;
}

@media (max-width: 539.98px) {
    .about-cta-btn {
        width: 100%;
        max-width: 22rem;
    }
}

/* Services page — hero strip */
.services-page-hero {
    padding: clamp(2.75rem, 7vw, 4rem) 0 clamp(2.25rem, 5vw, 3.25rem);
}

.services-page-hero__title {
    margin: 0;
    font-family: var(--pns-heading);
    font-size: clamp(2rem, 5vw, 2.85rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.services-page-hero__muted {
    color: #ffffff;
}

.services-page-hero__gold {
    background-image: linear-gradient(135deg, #e8b430, #e8ca7d);
    background-clip: text;
    color: transparent;
    margin-left: 0.25rem;
}

.services-page-hero__sub {
    margin: 1rem auto 0;
    max-width: 36rem;
    font-family: var(--pns-font);
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
}

/* Services — cream section, pill tabs, two-column detail */
.services-showcase {
    background: #f9f7f2;
    padding-top: clamp(2.25rem, 5vw, 3.5rem);
    padding-bottom: clamp(2.75rem, 6vw, 4.25rem);
}

.service-pills-scroll {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.5rem;
    margin: 0 0 clamp(1.5rem, 4vw, 2.35rem);
    padding: 0.15rem 0 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

@media (min-width: 992px) {
    .service-pills-scroll {
        flex-wrap: wrap;
        justify-content: center;
        overflow: visible;
    }
}

.service-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.48rem;
    flex: 0 0 auto;
    padding: 0.52rem 1.05rem;
    border: 1px solid rgba(22, 44, 68, 0.14);
    border-radius: 999px;
    background: #ffffff;
    color: var(--pns-navy);
    font-family: var(--pns-font);
    font-weight: 600;
    font-size: clamp(0.78rem, 1.8vw, 0.875rem);
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(22, 44, 68, 0.06);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease,
        transform 0.15s ease;
}

.service-pill i {
    font-size: 0.88rem;
    opacity: 0.95;
}

.service-pill:hover {
    border-color: rgba(22, 44, 68, 0.28);
    box-shadow: 0 4px 14px rgba(22, 44, 68, 0.1);
}

.service-pill.active {
    background: var(--pns-navy);
    color: #ffffff;
    border-color: var(--pns-navy);
    box-shadow: 0 10px 28px rgba(15, 26, 40, 0.35);
}

.service-pill.active i {
    color: #ffffff;
}

.service-pill:focus-visible {
    outline: 2px solid #e8b430;
    outline-offset: 3px;
}

.service-panels.tab-content {
    background: transparent;
    border: none;
    padding: 0;
}

/* BS tab panels are focused when shown (tabindex="0") — default outline reads as a black box */
.service-panels > .tab-pane {
    border: none !important;
    outline: none;
    box-shadow: none;
}

.service-panels > .tab-pane:focus {
    outline: none;
    box-shadow: none;
}

 


.service-detail {
    display: grid;
    gap: clamp(1.35rem, 4vw, 2.25rem);
    align-items: start;
}

@media (min-width: 992px) {
    .service-detail {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: clamp(2rem, 4vw, 3.25rem);
        align-items: center;
    }
}

.service-detail__media {
    margin: 0;
}

.service-detail__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 22px 55px rgba(22, 44, 68, 0.14), 0 8px 20px rgba(22, 44, 68, 0.08);
}

.service-detail__body {
    min-width: 0;
}

.service-detail__title {
    margin: 0 0 0.85rem;
    font-family: var(--pns-heading);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.22;
    color: var(--pns-navy);
}

.service-detail__text {
    margin: 0 0 1.2rem;
    font-family: var(--pns-font);
    font-size: clamp(0.92rem, 2vw, 1.03rem);
    line-height: 1.65;
    color: #5c6b7a;
}

.service-detail__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 0.85rem;
    margin-bottom: 1.05rem;
}

.service-detail__meta-label {
    font-family: var(--pns-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--pns-navy);
}

.service-detail__badge {
    display: inline-block;
    padding: 0.38rem 0.95rem;
    border-radius: 999px;
    font-family: var(--pns-font);
    font-size: clamp(0.75rem, 1.7vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #6b5210;
    background: linear-gradient(180deg, rgba(255, 248, 220, 0.95) 0%, rgba(232, 200, 92, 0.35) 100%);
    border: 1px solid rgba(232, 180, 48, 0.45);
}

.service-detail__list-title {
    margin: 0 0 0.6rem;
    font-family: var(--pns-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--pns-navy);
}

.service-detail__included {
    margin: 0 0 clamp(1.35rem, 3vw, 1.85rem);
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem 1.35rem;
}

@media (min-width: 520px) {
    .service-detail__included {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.service-detail__included li {
    position: relative;
    padding-left: 1.05rem;
    font-family: var(--pns-font);
    font-size: clamp(0.88rem, 1.9vw, 0.97rem);
    line-height: 1.4;
    color: #3d4d5c;
}

.service-detail__included li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #e8b430;
}

.service-detail__addon {
    font-size: 0.88em;
    font-weight: 600;
    color: #916b44;
}

.service-detail__ctas {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

@media (min-width: 540px) {
    .service-detail__ctas {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
    }
}

.service-detail__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.72rem 1.4rem;
    border-radius: 10px;
    font-family: var(--pns-font);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.service-detail__btn--primary {
    background: linear-gradient(135deg, var(--pns-gold) 0%, #a88420 100%);
    color: var(--pns-navy-dark) !important;
    border: none;
    box-shadow: 0 4px 16px rgba(201, 162, 39, 0.4);
}

.service-detail__btn--primary:hover {
    color: var(--pns-navy-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 162, 39, 0.48);
}

.service-detail__btn--outline {
    background: #ffffff;
    color: var(--pns-navy) !important;
    border: 2px solid var(--pns-navy);
    box-shadow: 0 2px 8px rgba(22, 44, 68, 0.06);
}

.service-detail__btn--outline:hover {
    background: rgba(22, 44, 68, 0.06);
    color: var(--pns-navy) !important;
}

@media (max-width: 539.98px) {
    .service-detail__btn {
        width: 100%;
    }
}

/* Industries page */
.industries-page-hero {
    padding: clamp(2.75rem, 7vw, 4rem) 0 clamp(2.25rem, 5vw, 3.25rem);
}

.industries-page-hero__title {
    margin: 0;
    font-family: var(--pns-heading);
    font-size: clamp(1.85rem, 4.5vw, 2.65rem);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: 0.02em;
}

.industries-page-hero__line1 {
    display: inline-block;
    color: #ffffff;
    margin-right: 0.35rem;
}

.industries-page-hero__line2 {
    background-image: linear-gradient(135deg, #e8b430, #e8ca7d);
    background-clip: text;
    color: transparent;
}

.industries-page-hero__sub {
    margin: 1rem auto 0;
    max-width: 36rem;
    font-family: var(--pns-font);
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.92);
}

.industries-main.section-pns {
    background: #f9f7f2;
    padding-top: clamp(2.5rem, 6vw, 3.75rem);
    padding-bottom: clamp(2.75rem, 6vw, 4.25rem);
}

.industries-intro {
    display: grid;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

@media (min-width: 992px) {
    .industries-intro {
        grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
        gap: clamp(2rem, 4vw, 3.25rem);
    }
}

.industries-intro__img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(22, 44, 68, 0.12), 0 8px 20px rgba(22, 44, 68, 0.06);
}

.industries-intro__title {
    margin: 0 0 1rem;
    font-family: var(--pns-heading);
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.22;
    color: var(--pns-navy);
}

.industries-intro__title-accent {
    color: #c9a227;
}

.industries-intro__text {
    margin: 0 0 1rem;
    font-family: var(--pns-font);
    font-size: clamp(0.92rem, 2vw, 1.03rem);
    line-height: 1.65;
    color: #5c6b7a;
}

.industries-partners {
    margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.industries-partners__title {
    margin: 0 0 clamp(1.35rem, 3vw, 1.85rem);
    font-family: var(--pns-heading);
    font-size: clamp(1.35rem, 2.8vw, 1.75rem);
    font-weight: 600;
    text-align: center;
    color: var(--pns-navy);
}

.industries-partners__title-accent {
    color: #c9a227;
}

.industries-partners__grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 1fr;
}

@media (min-width: 576px) {
    .industries-partners__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 992px) {
    .industries-partners__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.35rem;
    }
}

.industry-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: clamp(1.35rem, 3vw, 1.65rem) clamp(1rem, 2vw, 1.25rem);
    background: #ffffff;
    border: 1px solid rgba(22, 44, 68, 0.08);
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(22, 44, 68, 0.06);
    transition: box-shadow 0.25s ease, transform 0.2s ease;
    height: 100%;
}

.industry-partner-card:hover {
    box-shadow: 0 14px 40px rgba(22, 44, 68, 0.1);
    transform: translateY(-3px);
}

.industry-partner-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    font-size: 1.1rem;
    color: #ffffff;
    background: var(--pns-navy);
}

.industry-partner-card__name {
    margin: 0 0 0.5rem;
    font-family: var(--pns-heading);
    font-size: clamp(1rem, 2vw, 1.1rem);
    font-weight: 700;
    color: var(--pns-navy);
    line-height: 1.25;
}

.industry-partner-card__desc {
    margin: 0;
    font-family: var(--pns-font);
    font-size: clamp(0.8rem, 1.7vw, 0.88rem);
    line-height: 1.5;
    color: var(--pns-muted);
}

.industries-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

@media (min-width: 540px) {
    .industries-ctas {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

/* Footer — four-column layout */
.site-footer {
    background: #0b1832;
    color: rgba(255, 255, 255, 0.82);
    padding: clamp(2.75rem, 5vw, 3.75rem) 0 1.75rem;
    margin-top: 0;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #e8ca7d;
}

.footer-grid {
    display: grid;
    gap: clamp(2rem, 4vw, 2.75rem);
    grid-template-columns: 1fr;
    text-align: left;
    align-items: start;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2rem 2.5rem;
    }

    .footer-col--brand {
        grid-column: auto;
    }
}

.footer-brand-link {
    display: inline-block;
    text-decoration: none !important;
    margin-bottom: 1rem;
}

.footer-brand-img {
    max-height: 130px;
    width: auto;
    display: block;
}

.footer-brand-text {
    display: block;
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    line-height: 1.2;
}

.footer-brand-text__phoenix {
    color: #ffffff;
}

.footer-brand-text__gold {
    color: #e8b430;
    margin-left: 0.15em;
}

.footer-tagline {
    font-family: var(--pns-font);
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.62);
    margin: 0 0 1.35rem;
    max-width: 22rem;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--pns-font);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #e8b430;
}

.footer-badge i {
    font-size: 1rem;
    opacity: 0.95;
}

.footer-social--compact {
    margin-top: 0.25rem;
}

.footer-social--compact a {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-right: 0.4rem;
    color: #e8b430 !important;
}

.footer-social--compact a:hover {
    background: rgba(232, 180, 48, 0.2);
    color: #f5e6b8 !important;
}

.footer-heading {
    margin: 0 0 1.1rem;
    font-family: var(--pns-hero-serif);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    color: #e8b430;
}


.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.45rem;
}

.footer-links a {
    font-family: var(--pns-font);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.78) !important;
}

.footer-links a:hover {
    color: #ffffff !important;
}

.footer-areas-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-areas-list li {
    margin: 0 0 0.42rem;
    padding: 0;
    font-family: var(--pns-font);
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.45;
    color: #cbd5e1;
}

.footer-areas-list li:last-child {
    margin-bottom: 0;
}

.footer-contact-list {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
}

.footer-contact-list li {
    margin-bottom: 0.65rem;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-family: var(--pns-font);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
}

.footer-contact-list a:hover {
    color: #e8ca7d !important;
}

.footer-contact-list i {
    width: 1.1rem;
    text-align: center;
    color: #e8b430;
    font-size: 0.95rem;
}

.footer-contact-line {
    display: inline-flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-family: var(--pns-font);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
}

.footer-contact-line i {
    margin-top: 0.15rem;
    color: #e8b430;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    font-family: var(--pns-font);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
    text-decoration: none !important;
    color: #0a0f18 !important;
    background: linear-gradient(180deg, #e8c24a, #d4a017);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease, filter 0.2s ease;
}

.footer-cta-btn:hover {
    color: #05080d !important;
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.footer-cta-btn i {
    font-size: 0.9rem;
    color: inherit;
}

.footer-bottom {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-family: var(--pns-font);
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.48);
}

/* Legacy footer social (if used elsewhere) */
.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    margin-right: 0.5rem;
    color: var(--pns-gold-light) !important;
}

.footer-social a:hover {
    background: var(--pns-gold);
    color: var(--pns-navy) !important;
}

/* Utilities */
.text-gold {
    color: var(--pns-gold) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.letter-spacing-1 {
    letter-spacing: 0.08em;
}

/* Desktop nav */
@media (min-width: 992px) {
    .site-logo {
        flex: 0 0 auto;
        max-width: none;
    }

    .logo-brand__img {
        max-width: 280px;
        max-height: 100px;
    }

    .main-nav {
        display: block;
        flex: 1 1 auto;
        min-width: 0;
    }

    .main-nav ul {
        justify-content: center;
    }

    .header-cta-phone {
        padding: 0.55rem 1.15rem !important;
        font-size: 0.8rem !important;
    }

    .mobile-toggle {
        display: none;
    }

    .header-main-row {
        flex-wrap: nowrap;
        padding: 0.75rem 0;
        gap: 1.25rem;
    }

    .site-header.is-sticky .header-main-row {
        padding: 0.55rem 0;
    }
}

/* Slick fade fix */
.hero-slider .slick-slide {
    outline: none;
}
