:root {
    --primhill-canvas: #fbfaf8;
    --primhill-surface: #ffffff;
    --primhill-surface-soft: #f6f1e8;
    --primhill-ink: #1f294e;
    --primhill-ink-soft: #5c6884;
    --primhill-accent: #d6a44d;
    --primhill-accent-strong: #bb8d46;
    --primhill-border: rgba(61, 80, 132, 0.15);
    --primhill-border-strong: rgba(61, 80, 132, 0.28);
    --primhill-shadow: 0 20px 48px rgba(31, 41, 78, 0.11);
    --primhill-shadow-soft: 0 12px 30px rgba(31, 41, 78, 0.08);
    --primhill-radius: 1.35rem;
    --primhill-nav-height: 5.5rem;
    --primhill-content-edge: clamp(2rem, 5vw, 4.5rem);
}

body.primhill-page-shell {
    margin: 0;
    color: var(--primhill-ink);
    background: var(--primhill-canvas);
    font-family: "Jost", "Segoe UI", Arial, sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.primhill-events-page {
    --primhill-accent: #d8b07a;
    --primhill-accent-strong: #9d6b56;
    --primhill-surface-soft: #f4ede6;
    --primhill-border: rgba(61, 80, 132, 0.14);
    --primhill-border-strong: rgba(61, 80, 132, 0.24);
    --primhill-shadow-soft: 0 14px 34px rgba(31, 41, 78, 0.09);
    --primhill-events-button: #bb8d46;
    --primhill-events-button-hover: #a77b37;
}

body.primhill-page-shell *,
body.primhill-page-shell *::before,
body.primhill-page-shell *::after {
    box-sizing: border-box;
}

body.primhill-page-shell main,
body.primhill-page-shell section,
body.primhill-page-shell article,
body.primhill-page-shell aside,
body.primhill-page-shell nav,
body.primhill-page-shell footer,
body.primhill-page-shell header {
    display: block;
}

body.primhill-page-shell img {
    display: block;
    max-width: 100%;
    height: auto;
}

body.primhill-page-shell a {
    color: inherit;
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.18em;
}

body.primhill-page-shell a:hover,
body.primhill-page-shell a:focus-visible {
    color: var(--primhill-accent-strong);
}

body.primhill-page-shell button,
body.primhill-page-shell input,
body.primhill-page-shell textarea {
    font: inherit;
}

body.primhill-page-shell :focus-visible {
    outline: 3px solid var(--primhill-accent);
    outline-offset: 3px;
}

body.primhill-page-shell ::selection {
    background: rgba(214, 164, 77, 0.28);
    color: var(--primhill-ink);
}

body.primhill-page-shell [hidden] {
    display: none !important;
}

body.primhill-page-shell .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body.primhill-page-shell .skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 2000;
    padding: 0.75rem 1rem;
    color: #ffffff;
    background: var(--primhill-ink);
    border-radius: 0.6rem;
    font-weight: 700;
    text-decoration: none;
    transition: top 0.2s ease;
}

body.primhill-page-shell .skip-link:focus {
    top: 1rem;
}

body.primhill-page-shell .primhill-container {
    width: min(1200px, calc(100% - (var(--primhill-content-edge) * 2)));
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

body.primhill-page-shell h1,
body.primhill-page-shell h2,
body.primhill-page-shell h3 {
    margin: 0 0 0.9rem;
    color: var(--primhill-ink);
    line-height: 1.08;
}

body.primhill-page-shell h1,
body.primhill-page-shell h2 {
    font-family: "LeBeauneNew", "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

body.primhill-page-shell h3 {
    font-family: "Montserrat", "Jost", Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

body.primhill-page-shell p,
body.primhill-page-shell li,
body.primhill-page-shell dd {
    color: var(--primhill-ink-soft);
}

body.primhill-page-shell ul,
body.primhill-page-shell ol {
    margin: 0;
}

body.primhill-page-shell main {
    overflow: clip;
}

body.primhill-page-shell .primhill-site-header {
    position: sticky;
    top: 0;
    z-index: 1100;
}

body.primhill-page-shell .primhill-site-header__bar {
    background: rgba(61, 80, 132, 0.98);
    border-bottom: 2px solid var(--primhill-accent);
    box-shadow: 0 12px 28px rgba(20, 31, 67, 0.18);
    backdrop-filter: blur(10px);
}

body.primhill-page-shell .primhill-site-header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: var(--primhill-nav-height);
    padding-top: var(--primhill-content-edge);
    padding-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

body.primhill-page-shell .primhill-primary-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    column-gap: clamp(0.85rem, 1.7vw, 1.7rem);
}

body.primhill-page-shell .primhill-primary-nav-group {
    display: flex;
    align-items: center;
    min-width: 0;
}

body.primhill-page-shell .primhill-primary-nav-group--right {
    justify-content: flex-end;
    gap: clamp(0.7rem, 1.3vw, 1rem);
}

body.primhill-page-shell .primhill-site-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    margin: 0 auto;
}

body.primhill-page-shell .primhill-site-brand img {
    width: 100%;
    height: auto;
}

body.primhill-page-shell .primhill-nav-list,
body.primhill-page-shell .primhill-mobile-nav-list,
body.primhill-page-shell .primhill-footer-list,
body.primhill-page-shell .primhill-link-list,
body.primhill-page-shell .primhill-check-list,
body.primhill-page-shell .primhill-inline-list {
    list-style: none;
    padding: 0;
}

body.primhill-page-shell .primhill-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(0.9rem, 2vw, 2rem);
    margin: 0;
}

body.primhill-page-shell .primhill-nav-list--desktop {
    flex-wrap: nowrap;
    gap: clamp(0.75rem, 1.35vw, 1.45rem);
}

body.primhill-page-shell .primhill-nav-list--left {
    justify-content: flex-start;
}

body.primhill-page-shell .primhill-nav-list--right {
    justify-content: flex-end;
}

body.primhill-page-shell .primhill-nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
}

body.primhill-page-shell .primhill-nav-link:hover,
body.primhill-page-shell .primhill-nav-link:focus-visible,
body.primhill-page-shell .primhill-nav-link.primhill-is-current {
    color: var(--primhill-accent);
}

body.primhill-page-shell .primhill-mobile-menu-right,
body.primhill-page-shell .primhill-mobile-menu-left {
    display: none;
    align-items: center;
    flex: 0 0 44px;
}

body.primhill-page-shell .primhill-mobile-menu-right {
    justify-content: flex-start;
}

body.primhill-page-shell .primhill-main-menu-search,
body.primhill-page-shell .primhill-mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    color: #ffffff;
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.primhill-page-shell .primhill-main-menu-search:hover,
body.primhill-page-shell .primhill-main-menu-search:focus-visible,
body.primhill-page-shell .primhill-mobile-menu-button:hover,
body.primhill-page-shell .primhill-mobile-menu-button:focus-visible {
    color: var(--primhill-accent);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

body.primhill-page-shell .primhill-main-menu-search .fa-search {
    font-size: 1.05rem;
}

body.primhill-page-shell .primhill-main-menu-search--mobile {
    display: none;
}

body.primhill-page-shell .primhill-main-menu-search--desktop {
    flex: 0 0 auto;
}

body.primhill-page-shell .primhill-mobile-menu-button {
    display: none;
    position: relative;
    flex-direction: column;
    gap: 0.28rem;
}

body.primhill-page-shell .primhill-mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

body.primhill-page-shell .primhill-mobile-menu-panel {
    background: #f5f1e8;
    border: 0;
    box-shadow: 0 14px 24px rgba(20, 31, 67, 0.18);
}

body.primhill-page-shell .primhill-mobile-menu-panel .primhill-container {
    padding-top: 0.9rem;
    padding-bottom: 1rem;
}

body.primhill-page-shell .primhill-mobile-nav-list {
    display: grid;
    gap: 0;
}

body.primhill-page-shell .primhill-mobile-nav-list li {
    opacity: 0;
    transform: translateY(-0.35rem);
    transition: opacity 0.2s ease, transform 0.22s ease;
}

body.primhill-page-shell .primhill-mobile-nav-list li:nth-child(1) {
    transition-delay: 0.04s;
}

body.primhill-page-shell .primhill-mobile-nav-list li:nth-child(2) {
    transition-delay: 0.07s;
}

body.primhill-page-shell .primhill-mobile-nav-list li:nth-child(3) {
    transition-delay: 0.1s;
}

body.primhill-page-shell .primhill-mobile-nav-list li:nth-child(4) {
    transition-delay: 0.13s;
}

body.primhill-page-shell .primhill-mobile-nav-list li:nth-child(5) {
    transition-delay: 0.16s;
}

body.primhill-page-shell .primhill-mobile-nav-list li:nth-child(6) {
    transition-delay: 0.19s;
}

body.primhill-page-shell .primhill-mobile-nav-list li:nth-child(7) {
    transition-delay: 0.22s;
}

body.primhill-page-shell .primhill-mobile-nav-list a {
    display: block;
    min-height: 52px;
    padding: 0.95rem 0;
    color: #22366f;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(34, 54, 111, 0.12);
    border-radius: 0;
    box-shadow: none;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

body.primhill-page-shell .primhill-mobile-nav-list a:hover,
body.primhill-page-shell .primhill-mobile-nav-list a:focus-visible {
    color: #17264f;
    transform: translateY(-1px);
}

body.primhill-page-shell .primhill-mobile-menu-meta {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(34, 54, 111, 0.14);
}

body.primhill-page-shell .primhill-mobile-menu-meta p {
    margin: 0.4rem 0;
}

body.primhill-page-shell .primhill-mobile-menu-meta,
body.primhill-page-shell .primhill-mobile-menu-meta a {
    color: #22366f;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.primhill-page-shell .primhill-hero,
body.primhill-page-shell .primhill-page-banner {
    position: relative;
    isolation: isolate;
}

body.primhill-page-shell .primhill-hero {
    padding: clamp(4.5rem, 8vw, 7rem) 0 2rem;
    background:
        radial-gradient(circle at 20% 16%, rgba(214, 164, 77, 0.16), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #fbfaf8 60%, #f7f1e6 100%);
    overflow: hidden;
}

body.primhill-page-shell .primhill-hero__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

body.primhill-page-shell .primhill-hero__shape {
    position: absolute;
    border-radius: 999px;
    opacity: 0.7;
}

body.primhill-page-shell .primhill-hero__shape--one {
    top: 2.5rem;
    left: calc(50% - 1px);
    width: 1px;
    height: 6.5rem;
    background: linear-gradient(180deg, rgba(61, 80, 132, 0.3), rgba(61, 80, 132, 0));
}

body.primhill-page-shell .primhill-hero__shape--two {
    right: -2rem;
    top: 5rem;
    width: 16rem;
    height: 16rem;
    background: radial-gradient(circle, rgba(214, 164, 77, 0.12), rgba(214, 164, 77, 0));
}

body.primhill-page-shell .primhill-hero__shape--three {
    left: -4rem;
    bottom: 2rem;
    width: 14rem;
    height: 14rem;
    background: radial-gradient(circle, rgba(61, 80, 132, 0.1), rgba(61, 80, 132, 0));
}

body.primhill-page-shell .primhill-hero__content {
    position: relative;
    max-width: 60rem;
    text-align: center;
}

body.primhill-page-shell .primhill-hero--image {
    display: flex;
    align-items: center;
    min-height: calc(100svh - var(--primhill-nav-height));
    padding: clamp(4rem, 7vw, 6rem) 0;
    background:
        linear-gradient(180deg, rgba(16, 25, 56, 0.28) 0%, rgba(16, 25, 56, 0.42) 100%),
        linear-gradient(90deg, rgba(16, 25, 56, 0.72) 0%, rgba(16, 25, 56, 0.3) 48%, rgba(16, 25, 56, 0.58) 100%),
        url("../upload/hero.webp") center center / cover no-repeat;
}

body.primhill-page-shell .primhill-hero--image .primhill-hero__content {
    max-width: 44rem;
    padding: clamp(2rem, 5vw, 4rem) 0;
    text-align: left;
}

body.primhill-page-shell .primhill-hero--image .primhill-hero__intro {
    margin: 0 0 0.85rem;
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.08em;
}

body.primhill-page-shell .primhill-hero--image h1 {
    max-width: 12ch;
    margin: 0 0 1rem;
    color: #ffffff;
    text-shadow: 0 6px 24px rgba(5, 12, 34, 0.28);
}

body.primhill-page-shell .primhill-hero--image .primhill-hero__summary {
    max-width: 34rem;
    margin-left: 0;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 3px 16px rgba(5, 12, 34, 0.22);
}

body.primhill-page-shell .primhill-hero--image .primhill-hero__actions {
    justify-content: flex-start;
}

body.primhill-page-shell .primhill-hero--image .primhill-button--ghost {
    border-color: rgba(255, 255, 255, 0.72);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

body.primhill-page-shell .primhill-hero--image .primhill-button--ghost:hover,
body.primhill-page-shell .primhill-hero--image .primhill-button--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.16);
}

body.primhill-page-shell .primhill-eyebrow,
body.primhill-page-shell .primhill-section-kicker,
body.primhill-page-shell .primhill-callout__kicker {
    margin: 0 0 1rem;
    color: var(--primhill-accent-strong);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.primhill-page-shell .primhill-hero h1 {
    max-width: 18ch;
    margin: 0 auto 1.2rem;
    font-size: clamp(2.5rem, 6vw, 4.4rem);
}

body.primhill-page-shell .primhill-hero__summary,
body.primhill-page-shell .primhill-page-banner__content p {
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.06rem;
}

body.primhill-page-shell .primhill-hero__actions,
body.primhill-page-shell .primhill-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.75rem;
}

body.primhill-page-shell .primhill-hero__actions {
    justify-content: center;
}

/* ========================================
   Banner Insights Section
======================================== */

body.primhill-page-shell .ph-banner-insights {
    position: relative;
    padding: clamp(2.5rem, 5vw, 4.25rem) 0 clamp(2rem, 4vw, 3rem);
    background:
        linear-gradient(180deg, rgba(246, 241, 232, 0.84) 0%, rgba(251, 250, 248, 0.96) 45%, rgba(255, 255, 255, 1) 100%);
}

body.primhill-page-shell .ph-banner-insights__inner {
    display: grid;
    gap: clamp(1.3rem, 2.5vw, 1.9rem);
}

body.primhill-page-shell .ph-banner-insights__intro {
    max-width: 44rem;
    margin: 0 auto;
    text-align: center;
}

body.primhill-page-shell .ph-banner-insights__eyebrow {
    margin: 0 0 0.6rem;
    color: var(--primhill-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

body.primhill-page-shell .ph-banner-insights__title {
    margin-bottom: 0.8rem;
    font-size: clamp(2rem, 4vw, 3rem);
}

body.primhill-page-shell .ph-banner-insights__description {
    margin: 0 auto;
    max-width: 40rem;
}

body.primhill-page-shell .ph-banner-insights__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.9rem, 2vw, 1.15rem);
}

body.primhill-page-shell .ph-banner-card {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    min-height: 100%;
    padding: 1.3rem 1.15rem 1.2rem;
    text-align: left;
    color: var(--primhill-ink);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(61, 80, 132, 0.12);
    border-radius: 1.15rem;
    box-shadow: 0 12px 24px rgba(31, 41, 78, 0.06);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    transition:
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
        border-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.primhill-page-shell .ph-banner-insights .ph-banner-card:not(.is-active) {
    color: var(--primhill-ink) !important;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 244, 238, 0.92) 100%) !important;
    border-color: rgba(187, 141, 70, 0.34) !important;
    box-shadow: 0 12px 24px rgba(31, 41, 78, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

body.primhill-page-shell .ph-banner-card:hover,
body.primhill-page-shell .ph-banner-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(187, 141, 70, 0.45);
    box-shadow: 0 18px 32px rgba(31, 41, 78, 0.1);
}

body.primhill-page-shell .ph-banner-insights .ph-banner-card:not(.is-active):hover,
body.primhill-page-shell .ph-banner-insights .ph-banner-card:not(.is-active):focus-visible {
    background: linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(246, 241, 232, 0.94) 100%) !important;
    border-color: rgba(187, 141, 70, 0.48) !important;
    box-shadow: 0 18px 32px rgba(31, 41, 78, 0.09);
}

body.primhill-page-shell .ph-banner-card.is-active {
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.98) 0%, rgba(246, 241, 232, 0.92) 100%);
    border-color: rgba(187, 141, 70, 0.52);
    box-shadow: 0 20px 34px rgba(31, 41, 78, 0.12);
    transform: translateY(-2px) scale(1.01);
}

body.primhill-page-shell .ph-banner-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    color: var(--primhill-accent-strong);
    background: rgba(187, 141, 70, 0.12);
    border-radius: 0.95rem;
    font-size: 1.28rem;
    transition:
        color 260ms cubic-bezier(0.22, 1, 0.36, 1),
        background-color 260ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.primhill-page-shell .ph-banner-card:hover .ph-banner-card__icon,
body.primhill-page-shell .ph-banner-card:focus-visible .ph-banner-card__icon,
body.primhill-page-shell .ph-banner-card.is-active .ph-banner-card__icon {
    color: #ffffff;
    background: var(--primhill-accent-strong);
    transform: translateY(-1px);
}

body.primhill-page-shell .ph-banner-card__value {
    display: block;
    font-family: "LeBeauneNew", "Times New Roman", serif;
    font-size: 1.4rem;
    line-height: 1.05;
    letter-spacing: 0.02em;
}

body.primhill-page-shell .ph-banner-card__label {
    display: block;
    color: var(--primhill-ink-soft);
    font-size: 0.96rem;
    line-height: 1.55;
}

body.primhill-page-shell .ph-banner-insights .ph-banner-card:not(.is-active) .ph-banner-card__value {
    color: #1f2f63;
}

body.primhill-page-shell .ph-banner-insights .ph-banner-card:not(.is-active) .ph-banner-card__label {
    color: #53617f;
}

body.primhill-page-shell .ph-banner-insights__panel {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition:
        opacity 300ms cubic-bezier(0.22, 1, 0.36, 1),
        transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.primhill-page-shell .ph-banner-insights__panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.primhill-page-shell .ph-banner-insights__panel-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 1.45rem;
    background: rgba(61, 80, 132, 0.04);
    border: 1px solid rgba(61, 80, 132, 0.12);
    border-radius: 1.15rem;
    box-shadow: 0 14px 28px rgba(31, 41, 78, 0.07);
}

body.primhill-page-shell .ph-banner-insights__panel-title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

body.primhill-page-shell .ph-banner-insights__panel-text {
    margin: 0;
    max-width: 48rem;
}

body.primhill-page-shell .ph-banner-insights__panel-close {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0.75rem 1rem;
    color: var(--primhill-ink);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(61, 80, 132, 0.14);
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition:
        border-color 220ms ease,
        background-color 220ms ease,
        color 220ms ease;
}

body.primhill-page-shell .ph-banner-insights__panel-close:hover,
body.primhill-page-shell .ph-banner-insights__panel-close:focus-visible {
    color: #ffffff;
    background: var(--primhill-accent-strong);
    border-color: var(--primhill-accent-strong);
}

body.primhill-page-shell .ph-image-banner {
    padding: 0 0 clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(251, 250, 248, 0.9) 100%);
}

body.primhill-page-shell .ph-image-banner__media {
    width: min(1320px, calc(100% - 4rem));
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(61, 80, 132, 0.08);
    border-radius: 1.35rem;
    box-shadow: 0 16px 34px rgba(31, 41, 78, 0.1);
}

body.primhill-page-shell .ph-image-banner__media img {
    display: block;
    width: 100%;
    height: clamp(16rem, 34vw, 27rem);
    object-fit: cover;
    object-position: center 32%;
}

body.primhill-page-shell .primhill-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.35rem;
    color: #15244a;
    background: var(--primhill-accent);
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(214, 164, 77, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.primhill-page-shell .primhill-button:hover,
body.primhill-page-shell .primhill-button:focus-visible {
    color: #15244a;
    background: #e2b867;
    box-shadow: 0 16px 28px rgba(214, 164, 77, 0.28);
    transform: translateY(-1px);
}

body.primhill-page-shell .primhill-button--ghost {
    color: var(--primhill-ink);
    background: transparent;
    border-color: var(--primhill-border-strong);
    box-shadow: none;
}

body.primhill-page-shell .primhill-button--ghost:hover,
body.primhill-page-shell .primhill-button--ghost:focus-visible {
    background: rgba(61, 80, 132, 0.06);
}

body.primhill-page-shell .primhill-page-banner {
    min-height: 21rem;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    overflow: hidden;
}

body.primhill-page-shell .primhill-page-banner--compact {
    min-height: 17rem;
}

body.primhill-page-shell .primhill-page-banner__media {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

body.primhill-page-shell .primhill-page-banner__content {
    position: relative;
    width: 100%;
    padding: clamp(4rem, 7vw, 5.5rem) 0 clamp(2rem, 4vw, 3.5rem);
}

body.primhill-page-shell .primhill-page-banner__content h1,
body.primhill-page-shell .primhill-page-banner__content h2,
body.primhill-page-shell .primhill-page-banner__content p {
    color: #ffffff;
}

body.primhill-page-shell .primhill-page-banner__content h1 {
    max-width: 18ch;
    font-size: clamp(2.2rem, 5.4vw, 3.7rem);
}

body.primhill-page-shell .primhill-section {
    padding: clamp(3.2rem, 7vw, 5.25rem) 0;
}

body.primhill-page-shell .primhill-section--tight {
    padding-top: 3.5rem;
}

body.primhill-page-shell .primhill-section--contrast {
    background: linear-gradient(180deg, #f8f3ea 0%, #fbfaf8 100%);
}

body.primhill-page-shell .primhill-section-heading {
    max-width: 46rem;
    margin-bottom: 2rem;
}

body.primhill-page-shell .primhill-section-heading--centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

body.primhill-page-shell .primhill-section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

body.primhill-page-shell .primhill-card-grid,
body.primhill-page-shell .primhill-link-panels,
body.primhill-page-shell .primhill-split,
body.primhill-page-shell .primhill-form__grid {
    display: grid;
    gap: 1.5rem;
}

body.primhill-page-shell .primhill-card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.primhill-page-shell .primhill-card-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.primhill-page-shell .primhill-card,
body.primhill-page-shell .primhill-link-panel,
body.primhill-page-shell .primhill-form-shell,
body.primhill-page-shell .primhill-search-results-shell {
    background: var(--primhill-surface);
    border: 1px solid var(--primhill-border);
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-card,
body.primhill-page-shell .primhill-link-panel {
    height: 100%;
    padding: 1.7rem;
}

body.primhill-page-shell .primhill-card--soft {
    background: rgba(255, 255, 255, 0.86);
}

body.primhill-page-shell .primhill-card h3 a,
body.primhill-page-shell .primhill-link-list a,
body.primhill-page-shell .primhill-text-link,
body.primhill-page-shell .primhill-search-results-list a {
    color: var(--primhill-ink);
}

body.primhill-page-shell .primhill-card h3 a,
body.primhill-page-shell .primhill-text-link {
    text-decoration: none;
}

body.primhill-page-shell .primhill-card h3 a:hover,
body.primhill-page-shell .primhill-text-link:hover,
body.primhill-page-shell .primhill-link-list a:hover,
body.primhill-page-shell .primhill-search-results-list a:hover {
    color: var(--primhill-accent-strong);
}

body.primhill-page-shell .primhill-home-page .primhill-card-grid .primhill-card h3 a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

body.primhill-page-shell .primhill-home-page .primhill-card-grid .primhill-card h3 a::before {
    content: "\2192";
    color: var(--primhill-accent-strong);
    font-size: 0.95em;
    font-weight: 700;
    line-height: 1;
}

body.primhill-page-shell .primhill-split {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.85fr);
    align-items: start;
}

body.primhill-page-shell .primhill-split--image {
    grid-template-columns: minmax(16rem, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
}

body.primhill-page-shell .primhill-split__media {
    min-height: 24rem;
    background-position: center;
    background-size: cover;
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow);
}

body.primhill-page-shell .primhill-principal-message {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(1.5rem, 3vw, 2.25rem);
}

body.primhill-page-shell .primhill-principal-message__media,
body.primhill-page-shell .primhill-principal-message__content {
    min-width: 0;
}

body.primhill-page-shell .primhill-principal-message__media {
    margin: 0;
    height: 100%;
}

body.primhill-page-shell .primhill-principal-message__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-principal-message__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.primhill-page-shell .primhill-principal-message__summary {
    margin-top: 1.4rem;
    padding: 1.2rem 1.25rem;
    background: rgba(61, 80, 132, 0.05);
    border: 1px solid rgba(61, 80, 132, 0.12);
    border-radius: var(--primhill-radius);
}

body.primhill-page-shell .primhill-principal-message__summary h3 {
    margin: 0 0 0.8rem;
    color: var(--primhill-ink);
}

body.primhill-page-shell .primhill-callout {
    position: relative;
    padding: 1.8rem;
    color: rgba(255, 255, 255, 0.88);
    background:
        radial-gradient(circle at top right, rgba(214, 164, 77, 0.28), transparent 34%),
        linear-gradient(165deg, #26355e 0%, #17244a 100%);
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow);
    overflow: hidden;
}

body.primhill-page-shell .primhill-callout h2,
body.primhill-page-shell .primhill-callout p,
body.primhill-page-shell .primhill-callout li,
body.primhill-page-shell .primhill-callout a,
body.primhill-page-shell .primhill-details-list dt,
body.primhill-page-shell .primhill-details-list dd {
    color: #ffffff;
}

body.primhill-page-shell .primhill-details-list {
    margin: 1.4rem 0 0;
}

body.primhill-page-shell .primhill-details-list div + div {
    margin-top: 1rem;
}

body.primhill-page-shell .primhill-details-list dt {
    margin-bottom: 0.2rem;
    font-weight: 600;
}

body.primhill-page-shell .primhill-highlight-list {
    display: grid;
    gap: 1rem;
}

body.primhill-page-shell .primhill-highlight-list__item {
    padding: 1.25rem 1.35rem;
    background: var(--primhill-surface);
    border: 1px solid var(--primhill-border);
    border-left: 4px solid var(--primhill-accent);
    border-radius: 0 1rem 1rem 0;
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-inline-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

body.primhill-page-shell .primhill-inline-list li {
    padding: 0.45rem 0.9rem;
    color: var(--primhill-ink);
    background: var(--primhill-surface-soft);
    border: 1px solid var(--primhill-border);
    border-radius: 999px;
}

body.primhill-page-shell .primhill-check-list,
body.primhill-page-shell .primhill-link-list {
    display: grid;
    gap: 0.8rem;
}

body.primhill-page-shell .primhill-check-list li {
    position: relative;
    padding-left: 1.4rem;
}

body.primhill-page-shell .primhill-check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62rem;
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primhill-accent);
    border-radius: 999px;
}

body.primhill-page-shell .primhill-link-list li {
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--primhill-border);
}

body.primhill-page-shell .primhill-link-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

body.primhill-page-shell .primhill-link-list a {
    text-decoration: none;
}

body.primhill-page-shell .primhill-link-list a::after {
    content: "→";
    display: inline-block;
    margin-left: 0.45rem;
    transition: transform 0.2s ease;
}

body.primhill-page-shell .primhill-link-list a:hover::after,
body.primhill-page-shell .primhill-link-list a:focus-visible::after {
    transform: translateX(2px);
}

body.primhill-page-shell .primhill-step-list {
    display: grid;
    gap: 1rem;
    counter-reset: step;
    list-style: none;
    padding: 0;
}

body.primhill-page-shell .primhill-step-list li {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 4.5rem;
    background: var(--primhill-surface);
    border: 1px solid var(--primhill-border);
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-step-list li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 1.3rem;
    top: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.3rem;
    height: 2.3rem;
    color: #15244a;
    background: var(--primhill-accent);
    border-radius: 999px;
    font-weight: 700;
}

body.primhill-page-shell .primhill-lead-quote {
    margin: 0 0 1.2rem;
    color: var(--primhill-ink);
    font-family: "LeBeauneNew", "Times New Roman", serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.15;
}

body.primhill-page-shell .primhill-link-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.primhill-page-shell .primhill-link-panels--compact {
    max-width: 34rem;
    margin: 1.5rem auto 0;
}

body.primhill-page-shell .primhill-form-shell,
body.primhill-page-shell .primhill-search-results-shell {
    padding: clamp(1.5rem, 4vw, 2.35rem);
}

body.primhill-page-shell .primhill-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.primhill-page-shell .primhill-form--compact {
    display: grid;
    gap: 1rem;
}

body.primhill-page-shell .primhill-form__field--full {
    grid-column: 1 / -1;
}

body.primhill-page-shell .primhill-form__field label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primhill-ink);
    font-weight: 600;
}

body.primhill-page-shell .primhill-form input,
body.primhill-page-shell .primhill-form textarea,
body.primhill-page-shell .primhill-search-results-form input {
    width: 100%;
    min-height: 3.25rem;
    padding: 0.82rem 1rem;
    color: var(--primhill-ink);
    background: #ffffff;
    border: 1px solid var(--primhill-border-strong);
    border-radius: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.primhill-page-shell .primhill-form textarea {
    min-height: 10rem;
    resize: vertical;
}

body.primhill-page-shell .primhill-form input:focus,
body.primhill-page-shell .primhill-form textarea:focus,
body.primhill-page-shell .primhill-search-results-form input:focus {
    border-color: var(--primhill-accent-strong);
    box-shadow: 0 0 0 4px rgba(214, 164, 77, 0.15);
    outline: 0;
}

body.primhill-page-shell .primhill-search-results-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

body.primhill-page-shell .primhill-search-results-form input {
    flex: 1 1 18rem;
}

body.primhill-page-shell .primhill-search-results-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.8rem 1.3rem;
    color: #15244a;
    background: var(--primhill-accent);
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
}

body.primhill-page-shell .primhill-search-results-summary {
    margin-bottom: 1rem;
    color: var(--primhill-ink);
    font-weight: 600;
}

body.primhill-page-shell .primhill-search-results-list {
    padding-left: 1.2rem;
}

body.primhill-page-shell .primhill-search-results-list li + li {
    margin-top: 0.6rem;
}

body.primhill-page-shell .primhill-newsletter-card {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

body.primhill-page-shell .primhill-newsletter-feature-card {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: clamp(1.4rem, 3vw, 2.4rem);
    align-items: stretch;
    margin-bottom: 1.75rem;
    padding: clamp(1.4rem, 3vw, 2rem);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 241, 230, 0.96) 100%);
    border: 1px solid var(--primhill-border);
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-newsletter-feature-card__content,
body.primhill-page-shell .primhill-newsletter-feature-card__media {
    min-width: 0;
}

body.primhill-page-shell .primhill-newsletter-feature-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

body.primhill-page-shell .primhill-newsletter-feature-card__lead {
    max-width: 50ch;
    font-size: 1.05rem;
}

body.primhill-page-shell .primhill-newsletter-feature-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 19rem;
    object-fit: cover;
    object-position: center;
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-newsletter-card--archive {
    background: rgba(61, 80, 132, 0.04);
}

body.primhill-page-shell .primhill-newsletter-card h3 a {
    color: var(--primhill-ink);
    text-decoration: none;
}

body.primhill-page-shell .primhill-newsletter-card h3 a:hover,
body.primhill-page-shell .primhill-newsletter-card h3 a:focus-visible {
    color: var(--primhill-accent-strong);
}

body.primhill-page-shell .primhill-newsletter-card__date {
    display: inline-flex;
    align-self: flex-start;
    margin: 0;
    padding: 0.35rem 0.75rem;
    color: var(--primhill-ink);
    background: var(--primhill-surface-soft);
    border: 1px solid var(--primhill-border);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
}

body.primhill-page-shell .primhill-newsletter-card__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.4rem;
}

body.primhill-page-shell .primhill-newsletter-card__actions .primhill-button {
    gap: 0.55rem;
}

body.primhill-page-shell .primhill-newsletter-card__pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    color: var(--primhill-accent-strong);
    background: rgba(61, 80, 132, 0.06);
    border: 1px solid var(--primhill-border);
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

body.primhill-page-shell .primhill-newsletter-card__pdf:hover,
body.primhill-page-shell .primhill-newsletter-card__pdf:focus-visible {
    color: #ffffff;
    background: var(--primhill-accent-strong);
    transform: translateY(-1px);
}

body.primhill-page-shell .primhill-newsletter-card__actions .fa,
body.primhill-page-shell .primhill-newsletter-card__pdf .fa {
    font-size: 1rem;
}

body.primhill-page-shell .primhill-callout__note {
    margin-top: 1rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.82);
}

body.primhill-page-shell .primhill-newsletter-issue-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.4fr);
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: start;
}

body.primhill-page-shell .primhill-newsletter-issue-sidebar {
    position: sticky;
    top: calc(var(--primhill-nav-height) + 1.25rem);
    display: grid;
    gap: 1rem;
}

body.primhill-page-shell .primhill-newsletter-sidebar-card,
body.primhill-page-shell .primhill-newsletter-issue-main {
    background: var(--primhill-surface);
    border: 1px solid var(--primhill-border);
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-newsletter-sidebar-card {
    padding: 1.25rem;
}

body.primhill-page-shell .primhill-newsletter-sidebar-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.08rem;
}

body.primhill-page-shell .primhill-newsletter-sidebar-card h3 a {
    color: var(--primhill-ink);
    text-decoration: none;
}

body.primhill-page-shell .primhill-newsletter-sidebar-card h3 a:hover,
body.primhill-page-shell .primhill-newsletter-sidebar-card h3 a:focus-visible {
    color: var(--primhill-accent-strong);
}

body.primhill-page-shell .primhill-newsletter-sidebar-card p {
    margin: 0;
}

body.primhill-page-shell .primhill-newsletter-sidebar-card--archive {
    background:
        linear-gradient(180deg, rgba(61, 80, 132, 0.06) 0%, rgba(61, 80, 132, 0.02) 100%),
        var(--primhill-surface);
}

body.primhill-page-shell .primhill-newsletter-issue-main {
    padding: clamp(1.5rem, 4vw, 2.4rem);
}

body.primhill-page-shell .primhill-newsletter-issue-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--primhill-border);
}

body.primhill-page-shell .primhill-newsletter-article + .primhill-newsletter-article {
    margin-top: 2.25rem;
    padding-top: 2.25rem;
    border-top: 1px solid var(--primhill-border);
}

body.primhill-page-shell .primhill-newsletter-feature-image {
    margin: 1.2rem 0 1.5rem;
}

body.primhill-page-shell .primhill-newsletter-feature-image img {
    width: 100%;
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-newsletter-feature-image figcaption {
    margin-top: 0.65rem;
    font-size: 0.94rem;
    color: var(--primhill-ink-soft);
}

body.primhill-page-shell .primhill-newsletter-article-card {
    padding: 1.25rem 1.3rem;
    background: rgba(61, 80, 132, 0.04);
    border: 1px solid rgba(61, 80, 132, 0.1);
    border-radius: 1rem;
}

body.primhill-page-shell .primhill-newsletter-article-card + .primhill-newsletter-article-card {
    margin-top: 1rem;
}

body.primhill-page-shell .primhill-events-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.9fr);
    gap: clamp(1.5rem, 3vw, 2.4rem);
    align-items: start;
}

body.primhill-page-shell .primhill-events-calendar-shell,
body.primhill-page-shell .primhill-events-detail-panel,
body.primhill-page-shell .primhill-event-card__button,
body.primhill-page-shell .primhill-event-modal__dialog {
    background: var(--primhill-surface);
    border: 1px solid var(--primhill-border);
    border-radius: var(--primhill-radius);
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-events-calendar-shell,
body.primhill-page-shell .primhill-events-detail-panel {
    padding: clamp(1.35rem, 3vw, 2rem);
}

body.primhill-events-page .primhill-events-calendar-shell,
body.primhill-events-page .primhill-events-detail-panel,
body.primhill-events-page .primhill-event-modal__dialog {
    background:
        linear-gradient(180deg, rgba(244, 237, 230, 0.55) 0%, rgba(255, 255, 255, 0.96) 100%);
}

body.primhill-page-shell .primhill-events-card-grid .primhill-event-card {
    padding: 0;
    overflow: hidden;
}

body.primhill-page-shell .primhill-event-card__button {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    color: inherit;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
}

body.primhill-page-shell .primhill-event-card__button img {
    display: block;
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

body.primhill-page-shell .primhill-event-card__body {
    padding: 1.35rem 1.4rem 1.5rem;
}

body.primhill-page-shell .primhill-events-card__tag {
    margin: 0 0 0.55rem;
    color: var(--primhill-accent-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.primhill-page-shell .primhill-event-card__button:hover h3,
body.primhill-page-shell .primhill-event-card__button:focus-visible h3 {
    color: var(--primhill-accent-strong);
}

body.primhill-page-shell .primhill-events-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    justify-content: center;
    margin: 0 0 1.5rem;
}

body.primhill-page-shell .primhill-events-legend__item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    color: var(--primhill-ink);
    background: rgba(61, 80, 132, 0.05);
    border: 1px solid var(--primhill-border);
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
}

body.primhill-page-shell .primhill-events-legend__dot {
    width: 0.7rem;
    height: 0.7rem;
    background: var(--primhill-accent-strong);
    border-radius: 999px;
    flex: 0 0 auto;
}

body.primhill-page-shell .primhill-events-legend__dot--soft {
    background: rgba(216, 176, 122, 0.72);
}

body.primhill-page-shell .primhill-events-legend__dot--outline {
    background: transparent;
    border: 2px solid var(--primhill-accent-strong);
}

body.primhill-page-shell .primhill-events-intro {
    max-width: 42rem;
}

body.primhill-page-shell .primhill-calendar-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

body.primhill-page-shell .primhill-calendar-toolbar__heading h3 {
    margin: 0 0 0.25rem;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
}

body.primhill-page-shell .primhill-calendar-toolbar__heading p {
    margin: 0;
}

body.primhill-page-shell .primhill-calendar-view-switch {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem;
    background: rgba(61, 80, 132, 0.06);
    border: 1px solid rgba(61, 80, 132, 0.1);
    border-radius: 999px;
}

body.primhill-events-page .primhill-calendar-view-switch {
    background: rgba(157, 107, 86, 0.08);
    border-color: rgba(157, 107, 86, 0.16);
}

body.primhill-page-shell .primhill-calendar-view-switch__button {
    min-height: 42px;
    padding: 0.6rem 1rem;
    color: var(--primhill-ink);
    background: transparent;
    border: 0;
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

body.primhill-page-shell .primhill-calendar-view-switch__button.is-active {
    color: #15244a;
    background: var(--primhill-accent);
}

body.primhill-events-page .primhill-calendar-view-switch__button.is-active {
    color: #ffffff;
    background: var(--primhill-events-button);
}

body.primhill-events-page .primhill-calendar-view-switch__button:hover,
body.primhill-events-page .primhill-calendar-view-switch__button:focus-visible {
    color: #ffffff;
    background: var(--primhill-events-button-hover);
}

body.primhill-page-shell .primhill-calendar-grid {
    display: grid;
    gap: 0.85rem;
}

body.primhill-page-shell .primhill-calendar-month {
    background: rgba(61, 80, 132, 0.03);
    border: 1px solid rgba(61, 80, 132, 0.1);
    border-radius: 1.1rem;
    overflow: hidden;
}

body.primhill-events-page .primhill-calendar-month {
    background: linear-gradient(180deg, rgba(255, 248, 241, 0.98) 0%, rgba(250, 244, 238, 0.95) 100%);
    border-color: rgba(157, 107, 86, 0.12);
}

body.primhill-page-shell .primhill-calendar-month__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.85rem;
    background: rgba(61, 80, 132, 0.06);
}

body.primhill-events-page .primhill-calendar-month__heading {
    background: linear-gradient(180deg, rgba(216, 176, 122, 0.2) 0%, rgba(244, 237, 230, 0.72) 100%);
}

body.primhill-page-shell .primhill-calendar-month__heading h4 {
    margin: 0;
    font-size: 1.05rem;
}

body.primhill-page-shell .primhill-calendar-month__heading p {
    margin: 0;
    font-size: 0.92rem;
}

body.primhill-page-shell .primhill-calendar-weekdays,
body.primhill-page-shell .primhill-calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}

body.primhill-page-shell .primhill-calendar-weekdays span {
    padding: 0.65rem 0.35rem;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primhill-ink-soft);
}

body.primhill-page-shell .primhill-calendar-day {
    min-height: 6.3rem;
    padding: 0.55rem;
    text-align: left;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(61, 80, 132, 0.08);
    border-right: 1px solid rgba(61, 80, 132, 0.08);
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

body.primhill-page-shell .primhill-calendar-day:nth-child(7n) {
    border-right: 0;
}

body.primhill-page-shell .primhill-calendar-day.is-empty {
    cursor: default;
    background: rgba(61, 80, 132, 0.02);
}

body.primhill-events-page .primhill-calendar-day.is-empty {
    background: rgba(244, 237, 230, 0.52);
}

body.primhill-page-shell .primhill-calendar-day.is-eventful {
    background: rgba(214, 164, 77, 0.08);
}

body.primhill-events-page .primhill-calendar-day.is-eventful {
    background: rgba(216, 176, 122, 0.16);
}

body.primhill-page-shell .primhill-calendar-day.is-active {
    background: rgba(61, 80, 132, 0.12);
    box-shadow: inset 0 0 0 2px var(--primhill-accent);
}

body.primhill-events-page .primhill-calendar-day.is-active {
    background: rgba(157, 107, 86, 0.12);
}

body.primhill-page-shell .primhill-calendar-day:hover,
body.primhill-page-shell .primhill-calendar-day:focus-visible {
    background: rgba(61, 80, 132, 0.09);
    transform: translateY(-1px);
}

body.primhill-events-page .primhill-calendar-day:hover,
body.primhill-events-page .primhill-calendar-day:focus-visible {
    background: rgba(216, 176, 122, 0.2);
}

body.primhill-page-shell .primhill-calendar-day__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.45rem;
    border-radius: 999px;
    font-weight: 700;
}

body.primhill-page-shell .primhill-calendar-day.is-eventful .primhill-calendar-day__number {
    color: #15244a;
    background: rgba(214, 164, 77, 0.7);
}

body.primhill-events-page .primhill-calendar-day.is-eventful .primhill-calendar-day__number {
    color: #3f2a20;
    background: rgba(216, 176, 122, 0.9);
}

body.primhill-page-shell .primhill-calendar-day__label {
    display: block;
    font-size: 0.83rem;
    line-height: 1.35;
    color: var(--primhill-ink);
}

body.primhill-page-shell .primhill-calendar-day__count {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.76rem;
    color: var(--primhill-ink-soft);
}

body.primhill-page-shell .primhill-events-detail-panel {
    position: sticky;
    top: calc(var(--primhill-nav-height) + 1.25rem);
}

body.primhill-page-shell .primhill-events-detail-card {
    padding: 1.2rem 1.25rem;
    background: rgba(61, 80, 132, 0.04);
    border: 1px solid rgba(61, 80, 132, 0.1);
    border-radius: 1rem;
}

body.primhill-events-page .primhill-events-detail-card {
    background: linear-gradient(180deg, rgba(255, 249, 244, 0.95) 0%, rgba(244, 237, 230, 0.72) 100%);
    border-color: rgba(157, 107, 86, 0.12);
}

body.primhill-page-shell .primhill-events-detail-card__intro {
    margin: 0;
}

body.primhill-page-shell .primhill-events-detail-card h3 {
    margin-bottom: 0.4rem;
}

body.primhill-page-shell .primhill-events-detail-card__meta {
    margin: 0 0 0.8rem;
    color: var(--primhill-accent-strong);
    font-weight: 600;
}

body.primhill-page-shell .primhill-events-detail-image {
    margin-top: 1.2rem;
}

body.primhill-page-shell .primhill-events-detail-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: var(--primhill-shadow-soft);
}

body.primhill-page-shell .primhill-events-side-note {
    margin-top: 1.1rem;
    padding: 1.15rem 1.2rem;
    background: rgba(61, 80, 132, 0.04);
    border: 1px solid rgba(61, 80, 132, 0.1);
    border-radius: 1rem;
}

body.primhill-events-page .primhill-events-side-note {
    background: linear-gradient(180deg, rgba(255, 250, 245, 0.95) 0%, rgba(244, 237, 230, 0.7) 100%);
    border-color: rgba(157, 107, 86, 0.12);
}

body.primhill-page-shell .primhill-events-side-note h3 {
    margin-bottom: 0.65rem;
}

body.primhill-page-shell .primhill-event-modal {
    position: fixed;
    inset: 0;
    z-index: 1500;
    display: grid;
    place-items: center;
    padding: 1rem;
}

body.primhill-page-shell .primhill-event-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(18, 27, 58, 0.62);
}

body.primhill-page-shell .primhill-event-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 56rem);
    overflow: hidden;
}

body.primhill-page-shell .primhill-event-modal__close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    z-index: 2;
    width: 2.8rem;
    height: 2.8rem;
    color: #ffffff;
    background: rgba(18, 27, 58, 0.76);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
}

body.primhill-events-page .primhill-event-modal__close:hover,
body.primhill-events-page .primhill-event-modal__close:focus-visible {
    color: #ffffff;
    background: var(--primhill-events-button);
    border-color: var(--primhill-events-button);
}

body.primhill-events-page .primhill-button {
    color: #1f294e;
    background: var(--primhill-events-button);
    box-shadow: 0 16px 28px rgba(187, 141, 70, 0.24);
}

body.primhill-events-page .primhill-button:hover,
body.primhill-events-page .primhill-button:focus-visible {
    color: #ffffff;
    background: var(--primhill-events-button-hover);
    box-shadow: 0 16px 28px rgba(167, 123, 55, 0.26);
}

body.primhill-page-shell .primhill-event-modal__media img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

body.primhill-page-shell .primhill-event-modal__content {
    padding: 1.5rem;
}

body.primhill-page-shell .primhill-event-modal__meta {
    margin: 0 0 0.9rem;
    color: var(--primhill-accent-strong);
    font-weight: 600;
}

body.primhill-modal-open {
    overflow: hidden;
}

body.primhill-page-shell .primhill-principal-popup {
    position: fixed;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    z-index: 1400;
    width: min(100% - 2rem, 24rem);
    opacity: 0;
    transform: translateY(1rem);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.3s ease;
}

body.primhill-page-shell .primhill-principal-popup.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

body.primhill-page-shell .primhill-principal-popup__content {
    padding: 1.2rem 1.2rem 1.1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.95) 100%),
        #f7f1e6;
    border: 1px solid rgba(61, 80, 132, 0.12);
    border-bottom: 3px solid var(--primhill-accent);
    border-radius: 1.1rem;
    box-shadow: 0 22px 36px rgba(20, 31, 67, 0.18);
}

body.primhill-page-shell .primhill-principal-popup__eyebrow {
    margin: 0 0 0.45rem;
    color: var(--primhill-accent-strong);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

body.primhill-page-shell .primhill-principal-popup h2 {
    margin: 0 0 0.6rem;
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
}

body.primhill-page-shell .primhill-principal-popup p {
    margin: 0;
}

body.primhill-page-shell .primhill-principal-popup__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1rem;
}

body.primhill-page-shell .primhill-principal-popup__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    color: var(--primhill-ink);
    background: transparent;
    border: 1px solid rgba(61, 80, 132, 0.22);
    border-radius: 999px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.primhill-page-shell .primhill-principal-popup__close:hover,
body.primhill-page-shell .primhill-principal-popup__close:focus-visible {
    color: #15244a;
    background: rgba(61, 80, 132, 0.08);
    border-color: rgba(61, 80, 132, 0.34);
}

body.primhill-page-shell .primhill-site-footer {
    margin-top: clamp(4rem, 7vw, 6rem);
    color: rgba(255, 255, 255, 0.88);
    background: linear-gradient(180deg, #24355d 0%, #17244a 100%);
    border-top: 2px solid var(--primhill-accent);
}

body.primhill-page-shell .ph-map-section {
    margin-top: clamp(2.5rem, 5vw, 4rem);
    border-top: 1px solid rgba(61, 80, 132, 0.1);
    background: #f6f1e8;
}

body.primhill-page-shell .ph-map-section__embed {
    position: relative;
    width: 100%;
    overflow: hidden;
}

body.primhill-page-shell .ph-map-section__embed iframe {
    display: block;
    width: 100%;
    height: clamp(26rem, 46vw, 34rem);
    border: 0;
}

body.primhill-page-shell .ph-map-section__badge {
    position: absolute;
    top: 50%;
    left: 56%;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 5.6rem;
    height: 5.6rem;
    padding: 0.6rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(61, 80, 132, 0.14);
    border-radius: 1.35rem;
    box-shadow: 0 20px 36px rgba(31, 41, 78, 0.18);
    pointer-events: none;
    transform: translate(-50%, -72%);
}

body.primhill-page-shell .ph-map-section__badge::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -0.78rem;
    width: 1.4rem;
    height: 1.4rem;
    background: rgba(255, 255, 255, 0.94);
    border-right: 1px solid rgba(61, 80, 132, 0.14);
    border-bottom: 1px solid rgba(61, 80, 132, 0.14);
    transform: translateX(-50%) rotate(45deg);
    box-shadow: 8px 8px 18px rgba(31, 41, 78, 0.06);
}

body.primhill-page-shell .ph-map-section__badge img {
    width: 100%;
    height: auto;
}

body.primhill-page-shell .ph-map-section__address {
    position: absolute;
    left: 1.35rem;
    bottom: 1.35rem;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    gap: 0.25rem;
    max-width: min(28rem, calc(100% - 2.7rem));
    padding: 0.95rem 1.1rem 1rem;
    color: var(--primhill-ink);
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(61, 80, 132, 0.14);
    border-radius: 1rem;
    box-shadow: 0 18px 32px rgba(31, 41, 78, 0.14);
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body.primhill-page-shell .ph-map-section__address:hover,
body.primhill-page-shell .ph-map-section__address:focus-visible {
    color: var(--primhill-ink);
    transform: translateY(-2px);
    border-color: rgba(187, 141, 70, 0.48);
    box-shadow: 0 22px 36px rgba(31, 41, 78, 0.16);
}

body.primhill-page-shell .ph-map-section__address-label {
    color: var(--primhill-accent-strong);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

body.primhill-page-shell .ph-map-section__address-text {
    font-weight: 600;
    line-height: 1.45;
}

body.primhill-page-shell .ph-map-section + .primhill-site-footer {
    margin-top: 0;
}

body.primhill-page-shell .primhill-site-footer__main {
    padding: 3.8rem 0 2rem;
}

body.primhill-page-shell .primhill-site-footer__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.8fr));
    gap: 1.75rem;
}

body.primhill-page-shell .primhill-site-footer h2,
body.primhill-page-shell .primhill-site-footer p,
body.primhill-page-shell .primhill-site-footer li,
body.primhill-page-shell .primhill-site-footer a,
body.primhill-page-shell .primhill-site-footer address {
    color: rgba(255, 255, 255, 0.88);
}

body.primhill-page-shell .primhill-site-footer a {
    text-decoration: none;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body.primhill-page-shell .primhill-site-footer a:hover,
body.primhill-page-shell .primhill-site-footer a:focus-visible {
    color: var(--primhill-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

body.primhill-page-shell .primhill-site-footer h2 {
    font-family: "Montserrat", "Jost", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body.primhill-page-shell .primhill-site-footer address {
    margin-top: 1rem;
    font-style: normal;
}

body.primhill-page-shell .primhill-site-footer address a[href^="https://maps"] {
    font-weight: 600;
    font-size: 1rem;
    display: inline-block;
    margin-bottom: 0.35rem;
}

body.primhill-page-shell .primhill-site-footer__brand img {
    width: 5rem;
    margin-bottom: 1rem;
}

body.primhill-page-shell .primhill-footer-list {
    display: grid;
    gap: 0.7rem;
    margin: 0;
}

body.primhill-page-shell .primhill-footer-list--plain li {
    padding: 0;
}

body.primhill-page-shell .primhill-site-footer .policydocuments {
    margin-top: 0.45rem;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    line-height: 1.7;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.primhill-page-shell .primhill-site-footer .policydocuments a {
    font-weight: 500;
}

body.primhill-page-shell .primhill-site-footer__meta {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body.primhill-page-shell .primhill-site-footer__meta-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem;
    padding: 1rem 0 var(--primhill-content-edge);
}

body.primhill-page-shell .primhill-site-footer__meta-inner p {
    margin: 0;
}

body.primhill-page-shell .primhill-created-by {
    white-space: nowrap;
}

body.primhill-page-shell .primhill-created-by__separator {
    display: inline-block;
    margin-right: 0.3rem;
}

body.primhill-page-shell .primhill-site-footer__utility {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

body.primhill-page-shell .primhill-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.35rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

body.primhill-page-shell .primhill-social-icon:hover,
body.primhill-page-shell .primhill-social-icon:focus {
    color: var(--primhill-accent);
    transform: translateY(-2px);
    outline: none;
    text-decoration: none;
}

body.primhill-page-shell #learning-overview,
body.primhill-page-shell #about-learning-title {
    scroll-margin-top: 7rem;
}

@media (max-width: 1100px) {
    body.primhill-page-shell .primhill-primary-nav {
        width: min(100%, 980px);
    }

    body.primhill-page-shell .primhill-nav-list--desktop {
        gap: 0.65rem;
    }

    body.primhill-page-shell .primhill-nav-link {
        font-size: 0.92rem;
    }

    body.primhill-page-shell .primhill-card-grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.primhill-page-shell .primhill-site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    :root {
        --primhill-nav-height: 5rem;
    }

    body.primhill-page-shell .ph-map-section__embed iframe {
        height: clamp(24rem, 52vw, 28.75rem);
    }

    body.primhill-page-shell .ph-map-section__badge {
        width: 5rem;
        height: 5rem;
    }

    body.primhill-page-shell .ph-banner-insights__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.primhill-page-shell .ph-banner-insights__panel-inner {
        flex-direction: column;
    }

    body.primhill-page-shell .ph-image-banner__media {
        width: min(100% - 3rem, 1200px);
    }

    body.primhill-nav-open {
        overflow: hidden;
    }

    body.primhill-page-shell .primhill-site-header__inner {
        display: grid;
        grid-template-columns: 44px minmax(0, 1fr) 44px;
        justify-content: unset;
        gap: 0.6rem;
    }

    body.primhill-page-shell .primhill-primary-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        order: 2;
    }

    body.primhill-page-shell .primhill-site-brand {
        width: 4rem;
        margin: 0 auto;
    }

    body.primhill-page-shell .primhill-mobile-menu-right {
        display: flex;
        order: 1;
        justify-content: flex-start;
    }

    body.primhill-page-shell .primhill-nav-list--desktop,
    body.primhill-page-shell .primhill-primary-nav-group--right {
        display: none;
    }

    body.primhill-page-shell .primhill-main-menu-search--mobile {
        display: inline-flex;
    }

    body.primhill-page-shell .primhill-main-menu-search--desktop {
        display: none;
    }

    body.primhill-page-shell .primhill-mobile-menu-left {
        display: flex;
        order: 3;
        justify-content: flex-end;
    }

    body.primhill-page-shell .primhill-mobile-menu-button {
        display: inline-flex;
    }

    body.primhill-page-shell .primhill-mobile-menu-meta,
    body.primhill-page-shell .primhill-mobile-menu-meta a {
        color: #22366f;
    }

    body.primhill-page-shell .primhill-mobile-menu-panel {
        position: absolute;
        top: calc(100% - 2px);
        left: 0;
        right: 0;
        z-index: 1090;
        border-bottom: 2px solid var(--primhill-accent);
        overflow: hidden;
        overflow-y: auto;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-0.65rem);
        transition: max-height 0.34s ease, opacity 0.22s ease, transform 0.28s ease, visibility 0s linear 0.34s;
    }

    body.primhill-page-shell.primhill-nav-open .primhill-mobile-menu-panel,
    body.primhill-page-shell .primhill-mobile-menu-panel.is-opening,
    body.primhill-page-shell .primhill-mobile-menu-panel.is-open {
        max-height: min(78vh, 36rem);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        transition: max-height 0.38s ease, opacity 0.24s ease, transform 0.28s ease, visibility 0s linear 0s;
    }

    body.primhill-page-shell.primhill-nav-open .primhill-mobile-nav-list li,
    body.primhill-page-shell .primhill-mobile-menu-panel.is-opening .primhill-mobile-nav-list li,
    body.primhill-page-shell .primhill-mobile-menu-panel.is-open .primhill-mobile-nav-list li {
        opacity: 1;
        transform: translateY(0);
    }

    body.primhill-page-shell.primhill-nav-open .primhill-mobile-menu-button span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    body.primhill-page-shell.primhill-nav-open .primhill-mobile-menu-button span:nth-child(2) {
        opacity: 0;
    }

    body.primhill-page-shell.primhill-nav-open .primhill-mobile-menu-button span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    body.primhill-page-shell .primhill-split,
    body.primhill-page-shell .primhill-split--image,
    body.primhill-page-shell .primhill-card-grid--three,
    body.primhill-page-shell .primhill-link-panels,
    body.primhill-page-shell .primhill-form__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    body.primhill-page-shell .primhill-container {
        width: min(100% - 3rem, 1200px);
    }

    body.primhill-page-shell .ph-map-section {
        margin-top: 2rem;
    }

    body.primhill-page-shell .ph-map-section__embed iframe {
        height: clamp(20rem, 70vw, 23.5rem);
    }

    body.primhill-page-shell .ph-map-section__badge {
        top: 42%;
        left: 54%;
        width: 4.35rem;
        height: 4.35rem;
        padding: 0.45rem;
        border-radius: 1rem;
    }

    body.primhill-page-shell .ph-map-section__badge::after {
        bottom: -0.62rem;
        width: 1.15rem;
        height: 1.15rem;
    }

    body.primhill-page-shell .ph-map-section__address {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
        padding: 0.85rem 0.95rem 0.9rem;
    }

    body.primhill-page-shell .primhill-site-footer {
        margin-top: 0;
    }

    body.primhill-page-shell .ph-banner-insights {
        padding-top: 2.15rem;
    }

    body.primhill-page-shell .ph-banner-insights__grid {
        grid-template-columns: 1fr;
    }

    body.primhill-page-shell .ph-banner-card {
        padding: 1.15rem 1rem;
    }

    body.primhill-page-shell .ph-banner-insights__panel-inner {
        padding: 1.1rem;
    }

    body.primhill-page-shell .ph-image-banner {
        padding-bottom: 1.5rem;
    }

    body.primhill-page-shell .ph-image-banner__media {
        width: min(100% - 2rem, 1200px);
        border-radius: 1rem;
    }

    body.primhill-page-shell .ph-image-banner__media img {
        height: clamp(13rem, 52vw, 18rem);
    }

    body.primhill-page-shell .primhill-principal-popup {
        right: 1rem;
        left: 1rem;
        width: auto;
    }

    body.primhill-page-shell .primhill-hero {
        padding-top: 3.75rem;
    }

    body.primhill-page-shell .primhill-hero--image {
        min-height: clamp(28rem, 88svh, 44rem);
        background-position: center top;
    }

    body.primhill-page-shell .primhill-hero h1,
    body.primhill-page-shell .primhill-page-banner__content h1 {
        max-width: 100%;
    }

    body.primhill-page-shell .primhill-hero--image .primhill-hero__content {
        text-align: center;
    }

    body.primhill-page-shell .primhill-hero--image .primhill-hero__summary {
        margin-left: auto;
        margin-right: auto;
    }

    body.primhill-page-shell .primhill-button,
    body.primhill-page-shell .primhill-search-results-form button {
        width: 100%;
    }

    body.primhill-page-shell .primhill-principal-popup__actions {
        flex-direction: column;
        align-items: stretch;
    }

    body.primhill-page-shell .primhill-principal-popup__close {
        width: 100%;
    }

    body.primhill-page-shell .primhill-hero__actions,
    body.primhill-page-shell .primhill-inline-actions {
        flex-direction: column;
    }

    body.primhill-page-shell .primhill-hero--image .primhill-hero__actions {
        justify-content: center;
    }

    body.primhill-page-shell .primhill-card-grid--four,
    body.primhill-page-shell .primhill-site-footer__grid {
        grid-template-columns: 1fr;
    }

    body.primhill-page-shell .primhill-events-layout {
        grid-template-columns: 1fr;
    }

    body.primhill-page-shell .primhill-events-detail-panel {
        position: static;
    }

    body.primhill-page-shell .primhill-calendar-month {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    body.primhill-page-shell .primhill-calendar-weekdays,
    body.primhill-page-shell .primhill-calendar-days {
        min-width: 31rem;
    }

    body.primhill-page-shell .primhill-newsletter-feature-card {
        grid-template-columns: 1fr;
    }

    body.primhill-page-shell .primhill-newsletter-feature-card__media {
        order: -1;
    }

    body.primhill-page-shell .primhill-newsletter-issue-layout {
        grid-template-columns: 1fr;
    }

    body.primhill-page-shell .primhill-newsletter-issue-sidebar {
        position: static;
        order: 2;
    }

    body.primhill-page-shell .primhill-newsletter-issue-main {
        order: 1;
    }

    body.primhill-page-shell .primhill-event-modal__content {
        padding: 1.15rem;
    }

    body.primhill-page-shell .primhill-created-by {
        display: block;
        margin-top: 0.25rem;
    }

    body.primhill-page-shell .primhill-created-by__separator {
        display: none;
    }

    body.primhill-page-shell .primhill-principal-message {
        grid-template-columns: 1fr;
    }

    body.primhill-page-shell .primhill-principal-message__media img {
        max-height: 32rem;
    }

    body.primhill-page-shell .primhill-site-footer__meta-inner {
        align-items: flex-start;
    }
}

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

    body.primhill-page-shell .primhill-mobile-menu-panel {
        transition: opacity 0.01ms linear !important;
        transform: none !important;
    }

    body.primhill-page-shell .primhill-mobile-menu-panel::before,
    body.primhill-page-shell .primhill-mobile-menu-panel::after,
    body.primhill-page-shell .primhill-mobile-menu-panel .primhill-container::before,
    body.primhill-page-shell .primhill-mobile-nav-list li {
        transform: none !important;
    }

    body.primhill-page-shell .ph-banner-card:hover,
    body.primhill-page-shell .ph-banner-card:focus-visible,
    body.primhill-page-shell .ph-banner-card.is-active,
    body.primhill-page-shell .ph-banner-card:hover .ph-banner-card__icon,
    body.primhill-page-shell .ph-banner-card:focus-visible .ph-banner-card__icon,
    body.primhill-page-shell .ph-banner-card.is-active .ph-banner-card__icon,
    body.primhill-page-shell .ph-banner-insights__panel,
    body.primhill-page-shell .ph-banner-insights__panel.is-open {
        transform: none !important;
    }
}
