:root {
    --npg-navy: #172650;
    --npg-primary: #40579a;
    --npg-blue: #496ea8;
    --npg-sky: #6188c3;
    --npg-ink: #172039;
    --npg-muted: #5b6475;
    --npg-line: #dce3ef;
    --npg-soft: #f3f6fb;
    --npg-white: #fff;
    --npg-success: #17643a;
    --npg-danger: #a12626;
    --npg-radius-sm: 12px;
    --npg-radius: 20px;
    --npg-radius-lg: 32px;
    --npg-shadow: 0 18px 50px rgba(23, 38, 80, .1);
    --npg-container: 1180px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 24px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--npg-white);
    color: var(--npg-ink);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

body.npg-menu-open {
    overflow: hidden;
}

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

img,
svg,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: var(--npg-primary);
    text-underline-offset: .2em;
}

a:hover {
    color: var(--npg-navy);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--npg-navy);
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 600;
    line-height: 1.12;
}

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

:focus-visible {
    outline: 3px solid #f0b429;
    outline-offset: 3px;
}

.npg-skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--npg-white);
    color: var(--npg-navy);
    font-weight: 700;
    transform: translateY(-160%);
}

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

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

.npg-site-header {
    position: relative;
    z-index: 1000;
    border-bottom: 1px solid var(--npg-line);
    background: rgba(255, 255, 255, .98);
}

.npg-contact-strip {
    background: var(--npg-navy);
    color: var(--npg-white);
    font-size: .9rem;
}

.npg-contact-strip__inner {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.npg-contact-strip a {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    gap: 8px;
    color: var(--npg-white);
    font-weight: 700;
    text-decoration: none;
}

.npg-navbar {
    display: flex;
    min-height: 92px;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.npg-brand {
    display: inline-flex;
    min-height: 56px;
    align-items: center;
}

.npg-brand img {
    width: min(240px, 44vw);
    max-height: 68px;
    object-fit: contain;
    object-position: left center;
}

.npg-primary-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.npg-primary-nav a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--npg-ink);
    font-size: .94rem;
    font-weight: 700;
    text-decoration: none;
}

.npg-primary-nav a:hover,
.npg-primary-nav a.is-current {
    background: var(--npg-soft);
    color: var(--npg-primary);
}

.npg-primary-nav .npg-nav-cta {
    margin-left: 8px;
    padding-inline: 18px;
    background: var(--npg-primary);
    color: var(--npg-white);
    box-shadow: 0 8px 24px rgba(64, 87, 154, .22);
}

.npg-primary-nav .npg-nav-cta:hover,
.npg-primary-nav .npg-nav-cta.is-current {
    background: var(--npg-navy);
    color: var(--npg-white);
}

.npg-menu-toggle {
    display: none;
    min-width: 72px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--npg-line);
    border-radius: 12px;
    background: var(--npg-white);
    color: var(--npg-navy);
    font: inherit;
    font-weight: 700;
}

.npg-menu-toggle__icon,
.npg-menu-toggle__icon::before,
.npg-menu-toggle__icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    content: "";
    transition: transform .2s ease;
}

.npg-menu-toggle__icon {
    position: relative;
}

.npg-menu-toggle__icon::before,
.npg-menu-toggle__icon::after {
    position: absolute;
    left: 0;
}

.npg-menu-toggle__icon::before { top: -6px; }
.npg-menu-toggle__icon::after { top: 6px; }

.npg-menu-toggle[aria-expanded="true"] .npg-menu-toggle__icon { background: transparent; }
.npg-menu-toggle[aria-expanded="true"] .npg-menu-toggle__icon::before { top: 0; transform: rotate(45deg); }
.npg-menu-toggle[aria-expanded="true"] .npg-menu-toggle__icon::after { top: 0; transform: rotate(-45deg); }

main {
    min-height: 45vh;
}

.npg-section {
    padding: clamp(64px, 8vw, 104px) 0;
}

.npg-section--soft {
    background: var(--npg-soft);
}

.npg-section--navy {
    background: var(--npg-navy);
    color: rgba(255, 255, 255, .84);
}

.npg-section--navy h2,
.npg-section--navy h3,
.npg-section--navy .npg-eyebrow {
    color: var(--npg-white);
}

.npg-section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.npg-section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.npg-section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3.3rem);
}

.npg-section-heading p {
    color: var(--npg-muted);
    font-size: 1.08rem;
}

.npg-section--navy .npg-section-heading p {
    color: rgba(255, 255, 255, .78);
}

.npg-eyebrow {
    margin-bottom: 12px;
    color: var(--npg-primary);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.npg-home-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(72px, 10vw, 132px) 0;
    background:
        radial-gradient(circle at 90% 12%, rgba(97, 136, 195, .22), transparent 34%),
        linear-gradient(135deg, #f7f9fd 0%, #fff 58%);
}

.npg-home-hero::after {
    position: absolute;
    right: -160px;
    bottom: -280px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(73, 110, 168, .18);
    border-radius: 50%;
    content: "";
}

.npg-hero-grid,
.npg-split {
    position: relative;
    z-index: 1;
    display: grid;
    align-items: center;
    gap: clamp(40px, 7vw, 88px);
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
}

.npg-home-hero h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    letter-spacing: -.035em;
}

.npg-home-hero__lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: var(--npg-muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.npg-hero-art {
    position: relative;
    display: grid;
    min-height: 430px;
    overflow: hidden;
    place-items: center;
    border: 1px solid rgba(64, 87, 154, .13);
    border-radius: var(--npg-radius-lg);
    background: rgba(255, 255, 255, .8);
    box-shadow: var(--npg-shadow);
}

.npg-hero-art img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 76% center;
}

.npg-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.npg-actions--center {
    justify-content: center;
}

.npg-actions--spaced {
    margin-top: 34px;
}

.npg-button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border: 2px solid var(--npg-primary);
    border-radius: 12px;
    background: var(--npg-primary);
    color: var(--npg-white);
    font: inherit;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.npg-button:hover {
    border-color: var(--npg-navy);
    background: var(--npg-navy);
    color: var(--npg-white);
    transform: translateY(-1px);
}

.npg-button:disabled {
    cursor: wait;
    opacity: .68;
    transform: none;
}

.npg-button--secondary {
    border-color: var(--npg-primary);
    background: var(--npg-white);
    color: var(--npg-primary);
}

.npg-button--light {
    border-color: var(--npg-white);
    background: var(--npg-white);
    color: var(--npg-navy);
}

.npg-button--text {
    border-color: transparent;
    background: transparent;
    color: var(--npg-primary);
}

.npg-button--text:hover {
    border-color: var(--npg-line);
    background: var(--npg-soft);
    color: var(--npg-navy);
}

.npg-utility-link {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 16px;
    color: var(--npg-primary);
    font-weight: 800;
}

.npg-card-grid {
    display: grid;
    gap: 22px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.npg-card {
    height: 100%;
    padding: clamp(24px, 3vw, 34px);
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius);
    background: var(--npg-white);
    box-shadow: 0 10px 34px rgba(23, 38, 80, .06);
}

.npg-card h3 {
    margin-bottom: 12px;
    font-size: 1.45rem;
}

.npg-card p {
    color: var(--npg-muted);
}

.npg-card__icon {
    display: inline-grid;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border-radius: 14px;
    background: #eaf0fa;
    color: var(--npg-primary);
    font-size: 1.25rem;
    place-items: center;
}

.npg-audience-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.npg-audience-list li,
.npg-chip {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    padding: 7px 14px;
    border: 1px solid var(--npg-line);
    border-radius: 999px;
    background: var(--npg-white);
    color: var(--npg-navy);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
}

.npg-journey {
    display: grid;
    gap: 0;
    counter-reset: journey;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.npg-journey__step {
    position: relative;
    padding: 28px 30px;
    border-left: 1px solid rgba(255, 255, 255, .18);
    counter-increment: journey;
}

.npg-journey__step::before {
    display: grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    color: var(--npg-white);
    content: counter(journey, decimal-leading-zero);
    font-weight: 800;
    place-items: center;
}

.npg-journey__step h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.npg-journey__step p {
    color: rgba(255, 255, 255, .74);
}

.npg-check-list {
    display: grid;
    gap: 16px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.npg-check-list li {
    position: relative;
    padding-left: 34px;
}

.npg-check-list li::before {
    position: absolute;
    top: .2em;
    left: 0;
    display: grid;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: #e4edf9;
    color: var(--npg-primary);
    content: "✓";
    font-size: .82rem;
    font-weight: 900;
    place-items: center;
}

.npg-media-frame {
    overflow: hidden;
    border-radius: var(--npg-radius-lg);
    box-shadow: var(--npg-shadow);
}

.npg-media-frame img {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
}

.npg-advisor-portrait {
    position: relative;
    margin: 0;
    background: var(--npg-soft);
}

.npg-advisor-portrait img {
    object-position: right center;
}

.npg-advisor-portrait figcaption {
    position: absolute;
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding: 14px 16px;
    border-radius: var(--npg-radius-sm);
    background: rgba(23, 38, 80, .94);
    color: var(--npg-white);
    line-height: 1.35;
}

.npg-advisor-portrait figcaption strong,
.npg-advisor-portrait figcaption span {
    display: block;
}

.npg-advisor-portrait figcaption strong {
    font-size: 1.05rem;
}

.npg-advisor-portrait figcaption span {
    color: rgba(255, 255, 255, .82);
    font-size: .9rem;
}

.npg-process {
    display: grid;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: process;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.npg-process li {
    position: relative;
    padding: 32px;
    border-top: 4px solid var(--npg-sky);
    border-radius: 0 0 var(--npg-radius) var(--npg-radius);
    background: var(--npg-white);
    box-shadow: var(--npg-shadow);
    counter-increment: process;
}

.npg-process li::before {
    display: block;
    margin-bottom: 14px;
    color: var(--npg-primary);
    content: "0" counter(process);
    font-size: .84rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.npg-process h3 {
    margin-bottom: 10px;
    font-size: 1.35rem;
}

.npg-faq-list {
    display: grid;
    max-width: 850px;
    margin-inline: auto;
    gap: 12px;
}

.npg-faq-list details {
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius-sm);
    background: var(--npg-white);
}

.npg-faq-list summary {
    display: flex;
    min-height: 56px;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 20px;
    color: var(--npg-navy);
    font-weight: 800;
    list-style: none;
}

.npg-faq-list summary::-webkit-details-marker { display: none; }
.npg-faq-list summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; }
.npg-faq-list details[open] summary::after { content: "−"; }

.npg-faq-list details p {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--npg-muted);
}

.npg-inner-hero {
    padding: clamp(56px, 8vw, 88px) 0;
    background:
        radial-gradient(circle at 85% 25%, rgba(97, 136, 195, .36), transparent 34%),
        var(--npg-navy);
    color: rgba(255, 255, 255, .8);
}

.npg-inner-hero__content {
    max-width: 760px;
}

.npg-inner-hero h1 {
    margin-bottom: 16px;
    color: var(--npg-white);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
}

.npg-inner-hero p {
    max-width: 680px;
    margin: 0;
    font-size: 1.12rem;
}

.npg-inner-hero .npg-inner-hero__content p {
    color: rgba(255, 255, 255, .86);
}

.npg-form-shell {
    display: grid;
    overflow: hidden;
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius-lg);
    background: var(--npg-white);
    box-shadow: var(--npg-shadow);
    grid-template-columns: minmax(0, 1fr) minmax(280px, .42fr);
}

.npg-form-panel {
    padding: clamp(28px, 5vw, 56px);
}

.npg-form-aside {
    padding: clamp(28px, 4vw, 44px);
    background: var(--npg-primary);
    color: rgba(255, 255, 255, .82);
}

.npg-form-aside h2,
.npg-form-aside h3,
.npg-form-aside a {
    color: var(--npg-white);
}

.npg-form-shell .npg-form-aside p,
.npg-form-shell .npg-form-aside li {
    color: rgba(255, 255, 255, .88);
}

.npg-form-shell .npg-form-aside strong,
.npg-form-shell .npg-form-aside a {
    color: var(--npg-white);
}

.npg-form-aside ul {
    display: grid;
    gap: 14px;
    margin: 24px 0;
    padding: 0;
    list-style: none;
}

.npg-form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.npg-field--full {
    grid-column: 1 / -1;
}

.npg-field label {
    display: inline-block;
    margin-bottom: 7px;
    color: var(--npg-ink);
    font-weight: 800;
}

.npg-field .form-control,
.npg-field input,
.npg-field textarea,
.npg-field select {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #bcc7d9;
    border-radius: 10px;
    background: var(--npg-white);
    color: var(--npg-ink);
    font: inherit;
}

.npg-field textarea.form-control,
.npg-field textarea {
    min-height: 140px;
    resize: vertical;
}

.npg-field .form-control:focus,
.npg-field input:focus,
.npg-field textarea:focus,
.npg-field select:focus {
    border-color: var(--npg-primary);
    box-shadow: 0 0 0 4px rgba(64, 87, 154, .14);
    outline: none;
}

.field-validation-error,
.validation-summary-errors,
.text-danger {
    color: var(--npg-danger) !important;
    font-size: .9rem;
    font-weight: 700;
}

.npg-form-actions {
    display: flex;
    margin-top: 24px;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.npg-form-actions .npg-button {
    min-width: 190px;
}

.npg-form-note {
    margin-top: 18px;
    color: var(--npg-muted);
    font-size: .9rem;
}

.npg-form-note a {
    color: var(--npg-primary);
    text-decoration: underline;
    text-decoration-thickness: .1em;
    text-underline-offset: .18em;
}

.npg-form-note a:focus-visible {
    outline: 3px solid #f0b429;
    outline-offset: 3px;
}

.npg-form-status {
    min-height: 28px;
    margin-top: 16px;
    color: var(--npg-success);
    font-weight: 800;
}

.npg-form-status--danger {
    color: var(--npg-danger);
}

.npg-map {
    overflow: hidden;
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius);
    box-shadow: var(--npg-shadow);
}

.npg-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.npg-booking-callout {
    max-width: 900px;
    margin-inline: auto;
    text-align: center;
}

.npg-booking-callout .npg-process {
    margin: 42px 0;
    text-align: left;
}

.npg-blog-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.npg-blog-card {
    display: flex;
    height: 100%;
    overflow: hidden;
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius);
    background: var(--npg-white);
    box-shadow: var(--npg-shadow);
    flex-direction: column;
}

.npg-blog-card__image {
    display: block;
    overflow: hidden;
    background: var(--npg-soft);
}

.npg-blog-card__image img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform .25s ease;
}

.npg-blog-card:hover .npg-blog-card__image img {
    transform: scale(1.02);
}

.npg-blog-card__body {
    display: flex;
    padding: 28px;
    flex: 1;
    flex-direction: column;
}

.npg-blog-card__meta,
.npg-post-meta {
    margin-bottom: 12px;
    color: var(--npg-muted);
    font-size: .88rem;
}

.npg-blog-card h2 {
    margin-bottom: 12px;
    font-size: 1.65rem;
}

.npg-blog-card h2 a {
    color: var(--npg-navy);
    text-decoration: none;
}

.npg-blog-card p {
    color: var(--npg-muted);
    flex: 1;
}

.npg-filter-list {
    display: flex;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 10px;
}

.npg-chip:hover,
.npg-chip.is-active {
    border-color: var(--npg-primary);
    background: var(--npg-primary);
    color: var(--npg-white);
}

.npg-pagination {
    display: flex;
    margin: 40px 0 0;
    padding: 0;
    justify-content: center;
    gap: 8px;
    list-style: none;
}

.npg-pagination a,
.npg-pagination span {
    display: grid;
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
    border: 1px solid var(--npg-line);
    border-radius: 10px;
    background: var(--npg-white);
    color: var(--npg-navy);
    font-weight: 800;
    text-decoration: none;
    place-items: center;
}

.npg-pagination .is-current {
    border-color: var(--npg-primary);
    background: var(--npg-primary);
    color: var(--npg-white);
}

.npg-empty-state {
    max-width: 720px;
    margin-inline: auto;
    padding: clamp(36px, 6vw, 64px);
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius);
    background: var(--npg-white);
    box-shadow: var(--npg-shadow);
    text-align: center;
}

.npg-empty-state__icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border-radius: 18px;
    background: #eaf0fa;
    color: var(--npg-primary);
    font-size: 1.5rem;
    place-items: center;
}

.npg-post-layout {
    display: grid;
    align-items: start;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) 310px;
}

.npg-post-article {
    overflow: hidden;
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius);
    background: var(--npg-white);
    box-shadow: var(--npg-shadow);
}

.npg-post-article > img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.npg-post-body {
    padding: clamp(28px, 6vw, 64px);
}

.npg-post-body > h1 {
    margin-bottom: 18px;
    font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.npg-richtext {
    color: #30394b;
    font-size: 1.06rem;
}

.npg-richtext :is(h2, h3, h4) {
    margin-top: 1.7em;
}

.npg-richtext img {
    height: auto;
    border-radius: var(--npg-radius-sm);
}

.npg-richtext blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--npg-sky);
    background: var(--npg-soft);
}

.npg-post-sidebar {
    display: grid;
    gap: 20px;
}

.npg-post-sidebar .npg-card {
    padding: 24px;
}

.npg-post-sidebar h2 {
    font-size: 1.35rem;
}

.npg-recent-list {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 14px;
    list-style: none;
}

.npg-recent-list a {
    color: var(--npg-navy);
    font-weight: 700;
    text-decoration: none;
}

.npg-post-navigation {
    display: flex;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--npg-line);
    justify-content: space-between;
    gap: 24px;
}

.npg-post-navigation a {
    max-width: 45%;
    font-weight: 800;
    text-decoration: none;
}

.npg-legal {
    max-width: 820px;
    margin-inline: auto;
}

.npg-legal-notice {
    margin-bottom: 32px;
    padding: 20px 22px;
    border-left: 4px solid var(--npg-sky);
    border-radius: 0 var(--npg-radius-sm) var(--npg-radius-sm) 0;
    background: var(--npg-soft);
}

.npg-legal h2 {
    margin-top: 38px;
    font-size: 1.7rem;
}

.npg-error-page {
    display: grid;
    min-height: 62vh;
    padding: 72px 0;
    background: var(--npg-soft);
    place-items: center;
}

.npg-error-card {
    max-width: 720px;
    margin-inline: auto;
    padding: clamp(36px, 7vw, 72px);
    border-radius: var(--npg-radius-lg);
    background: var(--npg-white);
    box-shadow: var(--npg-shadow);
    text-align: center;
}

.npg-error-code {
    margin-bottom: 6px;
    color: var(--npg-sky);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: .18em;
}

.npg-error-card h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.npg-site-footer {
    padding-top: 68px;
    background: #101a37;
    color: rgba(255, 255, 255, .72);
}

.npg-footer-grid {
    display: grid;
    padding-bottom: 52px;
    gap: 42px;
    grid-template-columns: 1.35fr repeat(3, 1fr);
}

.npg-footer-brand img {
    width: min(260px, 100%);
    max-height: 90px;
    object-fit: contain;
    object-position: left center;
}

.npg-footer-brand p {
    max-width: 320px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .78);
}

.npg-site-footer h2 {
    margin-bottom: 18px;
    color: var(--npg-white);
    font-family: "DM Sans", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.npg-site-footer ul {
    display: grid;
    margin: 0;
    padding: 0;
    gap: 10px;
    list-style: none;
}

.npg-site-footer a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.npg-site-footer a:hover {
    color: var(--npg-white);
    text-decoration: underline;
}

.npg-social-links {
    display: flex;
    margin-top: 20px;
    gap: 10px;
}

.npg-social-links a {
    display: grid;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    place-items: center;
}

.npg-footer-bottom {
    display: flex;
    min-height: 72px;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .12);
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-size: .84rem;
}

.npg-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
}

/* Keep inherited account pages usable while authentication remains disabled. */
.it-signup-area,
.it-login-area {
    min-height: 55vh;
    padding: 72px 0;
}

.it-signup-bg,
.it-login-bg {
    overflow: hidden;
    padding: clamp(24px, 5vw, 52px);
    border: 1px solid var(--npg-line);
    border-radius: var(--npg-radius);
    background: var(--npg-white);
    box-shadow: var(--npg-shadow);
}

.it-signup-area .form-control,
.it-login-area .form-control {
    min-height: 48px;
}

@media (max-width: 1100px) {
    .npg-primary-nav a { padding-inline: 9px; font-size: .88rem; }
    .npg-primary-nav .npg-nav-cta { padding-inline: 13px; }
    .npg-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px) {
    html { scroll-padding-top: 20px; }
    .npg-contact-strip__inner { justify-content: space-between; }
    .npg-navbar { min-height: 78px; flex-wrap: wrap; }
    .npg-brand img { max-height: 56px; }
    .npg-js .npg-menu-toggle { display: inline-flex; }
    .npg-primary-nav {
        width: 100%;
        max-height: calc(100vh - 130px);
        padding: 12px 0 22px;
        overflow-y: auto;
        border-top: 1px solid var(--npg-line);
        align-items: stretch;
        flex-direction: column;
    }
    .npg-js .npg-primary-nav { display: none; }
    .npg-js .npg-primary-nav.is-open { display: flex; }
    .npg-primary-nav a { width: 100%; min-height: 48px; padding: 12px 14px; font-size: 1rem; }
    .npg-primary-nav .npg-nav-cta { width: auto; margin: 8px 0 0; justify-content: center; }
    .npg-hero-grid,
    .npg-split { grid-template-columns: 1fr; }
    .npg-hero-art { min-height: 320px; }
    .npg-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .npg-card-grid > :last-child:nth-child(odd) { grid-column: 1 / -1; }
    .npg-journey,
    .npg-process { grid-template-columns: 1fr; }
    .npg-journey__step { border-top: 1px solid rgba(255, 255, 255, .18); border-left: 0; }
    .npg-form-shell { grid-template-columns: 1fr; }
    .npg-post-layout { grid-template-columns: 1fr; }
    .npg-post-sidebar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
    .npg-container { width: min(calc(100% - 28px), var(--npg-container)); }
    .npg-contact-strip__inner { min-height: 44px; justify-content: center; }
    .npg-contact-strip__inner > span { display: none; }
    .npg-home-hero { padding-top: 58px; }
    .npg-home-hero h1 { font-size: clamp(2.55rem, 12vw, 3.75rem); }
    .npg-hero-art { min-height: 280px; }
    .npg-actions { align-items: stretch; flex-direction: column; }
    .npg-actions .npg-button { width: 100%; }
    .npg-card-grid,
    .npg-blog-grid,
    .npg-post-sidebar { grid-template-columns: 1fr; }
    .npg-card-grid > :last-child:nth-child(odd) { grid-column: auto; }
    .npg-form-grid { grid-template-columns: 1fr; }
    .npg-field--full { grid-column: auto; }
    .npg-form-actions { align-items: stretch; flex-direction: column; }
    .npg-form-actions .npg-button { width: 100%; }
    .npg-map iframe { min-height: 320px; }
    .npg-media-frame { aspect-ratio: 4 / 3; }
    .npg-media-frame img { height: 100%; min-height: 0; object-position: center 45%; }
    .npg-advisor-portrait img { object-position: right center; }
    .npg-post-body { padding: 24px; }
    .npg-post-navigation { flex-direction: column; }
    .npg-post-navigation a { max-width: 100%; }
    .npg-footer-grid { grid-template-columns: 1fr; }
    .npg-footer-bottom { padding-block: 24px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
    .npg-menu-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
    .npg-menu-toggle { min-width: 48px; }
}

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