/* =====================================================================
   Lakeshore Commons Design Theme
   ===================================================================== */
/* =====================
   CSS Variables
   ===================== */
:root {
    --body-bgcolor: #fbfaf6;
    --body-texture: none;
    --body-font-family: "Mulish", sans-serif;
    --body-line-height: 1.75;
    --body-font-size: 1rem;
    --body-text-color: #314244;
    --content-area-bgcolor: #fbfaf6;
    --featurebox-content-bgcolor: var(--content-area-bgcolor);

    --color-primary: #14525c;
    --color-primary-text: #fff;
    --color-primary-link: rgba(255,255,255,.92);
    --color-primary-link-hover: var(--color-tertiary);

    --color-secondary: #0f3b43;
    --color-secondary-text: #fff;
    --color-secondary-link: rgba(255,255,255,.85);
    --color-secondary-link-hover: #fff;

    --color-tertiary: #c49a5e;
    --color-tertiary-text: #fff;
    --color-tertiary-link: #fff;
    --color-tertiary-link-hover: #fff;

    --header-bg-color: var(--color-primary);
    --header-text-color: var(--color-primary-text);
    --header-link-color: var(--color-primary-link);
    --header-link-color-hover: var(--color-primary-link-hover);

    --nav-bg-color: var(--color-secondary);
    --nav-text-color: var(--color-secondary-text);
    --nav-link-color: var(--color-secondary-link);
    --nav-link-color-hover: var(--color-secondary-link-hover);
    --nav-font-size: var(--body-font-size);

    --footer-bg-color: var(--color-secondary);
    --footer-text-color: var(--color-secondary-text);
    --footer-link-color: var(--color-secondary-link);
    --footer-link-color-hover: var(--color-secondary-link-hover);

    --copyright-bg-color: #0a2a2f;
    --copyright-text-color: rgba(255,255,255,.5);
    --copyright-link-color: rgba(255,255,255,.6);
    --copyright-link-color-hover: #fff;
    --copyright-alignment: center;

    --title-bg-color: var(--color-primary);
    --title-text-color: var(--color-primary-text);
    --title-link-color: var(--color-primary-link);
    --title-link-color-hover: var(--color-primary-link-hover);

    --link-color: var(--color-primary);
    --link-color-hover: var(--color-tertiary);

    --header-inner-width: 1920;
    --header-inner-height: 440;

    /* Design constants */
    --theme-line: #e3dccc;
    --theme-muted: color-mix(in srgb, currentColor 65%, transparent);
    --theme-surface: #f1ebdc;
    --theme-overlay: rgba(12,48,54,.3);
    --theme-overlay-deep: rgba(12,48,54,.55);
    --theme-shadow: rgba(15,59,67,.4);

    /* 4th accent color — not admin-settable, edit here to change */
    --color-accent: #c49a5e;
    --color-accent-dark: #a87e44;
}

/* =====================
   Base
   ===================== */

html {
    scroll-padding-top: 160px;
}

body {
    font-family: var(--body-font-family);
    line-height: var(--body-line-height);
    color: var(--body-text-color);
    font-size: var(--body-font-size);
    background-color: var(--body-bgcolor);
    background-image: var(--body-texture);
    background-repeat: repeat;
    -webkit-font-smoothing: antialiased;
    font-weight: 300;
}

.mnw-harmony-content-container {
    background-color: var(--content-area-bgcolor);
}

a {
    color: var(--link-color);
    text-decoration: underline;
}

a:hover, a:active {
    color: var(--link-color-hover);
}

/* =====================
   Typography
   ===================== */

h1, h2, h3, h4, .title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: .005rem;
    color: var(--color-secondary);
}

.calendarhead, .organizerlight {
    background: var(--title-bg-color);
    color: var(--title-text-color);
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .12rem;
    text-transform: uppercase;
}

.calendarhead a:active, .calendarhead a:link, .calendarhead a:visited,
.organizerlight a:active, .organizerlight a:link, .organizerlight a:visited {
    color: var(--title-link-color);
}

.calendarhead a:hover, .organizerlight a:hover {
    color: var(--title-link-color-hover);
}

/* =====================
   Fixed header
   Transparent over hero on load, becomes solid on scroll (.header-stuck)
   ===================== */

#site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow .35s;
}

#site-header.header-stuck {
    box-shadow: 0 6px 30px -18px var(--theme-shadow);
}

/* Header bar: transparent over hero, solid on scroll */
.header-bar {
    background: transparent;
    color: #fff;
    transition: background .35s;
}

.header-bar a {
    color: rgba(255,255,255,.92);
    text-decoration: none;
}

.header-bar a:hover {
    color: var(--color-tertiary);
}

/* Utility bar — login / social links on their own small row */
.header-util-bar {
    padding: 5px 0;
    font-size: 1rem;
    letter-spacing: .08rem;
    text-transform: uppercase;
    font-weight: 600;
}

.header-util-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* The framework's own public.min.css injects a forced line break after
   "Hello {name}" via .loginLinBreak::after { content:"\a"; white-space:pre; }
   (see mu_hello_inc.php), which is what splits this onto two lines regardless
   of .login-links' own white-space:nowrap. Overriding the generated content
   here (site-specific) swaps that forced break for a plain separator instead,
   without touching the shared framework file that sets it. */
.loginLinBreak::after {
    content: " | ";
    white-space: normal;
}

/* Main nav row: logo left, nav right */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo img.mnw-img-responsive {
    max-height: 66px;
    width: auto;
    max-width: 100%;
}

/* Bootstrap navbar wrapper — fills remaining space, nav items right-aligned */
.header-nav-wrap {
    flex: 1;
    min-width: 0;
}

.header-nav-wrap .navbar-nav {
    margin-left: auto;
}

/* Strip Bootstrap navbar's own padding/background so it sits in our bar */
#site-header .navbar {
    padding: 0;
    background: transparent;
}

.header-nav-wrap .container,
.header-nav-wrap .container-fluid {
    padding: 0;
    max-width: none;
}

/* Hide CMS navbar-brand text — logo is our own image */
.header-nav-wrap .navbar-brand {
    display: none;
}

.login-links {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.login-links .loginExtraClass {
    text-align: right;
}

/* Stuck state — solid header on scroll, shadow only (no border) */
#site-header.header-stuck .header-bar {
    background: var(--header-bg-color);
}

#site-header.header-stuck .header-bar a {
    color: var(--header-link-color);
}

#site-header.header-stuck .header-bar a:hover {
    color: var(--header-link-color-hover);
}

/* =====================
   Social icons
   ===================== */

.social-icons {
    font-size: 22px;
    color: rgba(255,255,255,.92);
}

.social-header {
    display: flex;
    align-items: center;
}

.social-icons-header a {
    color: rgba(255,255,255,.92);
    text-decoration: none;
}

.social-icons-header a:hover {
    color: var(--color-tertiary);
}

.social-icons-footer .social-icons,
.social-icons-footer .social-icons a {
    color: var(--footer-link-color);
}

.social-icons-footer .social-icons a:hover {
    color: var(--footer-link-color-hover);
}

.social-icons-footer {
    margin-top: 15px;
}

/* =====================
   Navigation
   ===================== */

.navbar-brand, .navbar-brand:hover {
    color: var(--nav-text-color);
}

.navbar .nav-link, .navbar .dropdown-item, .navbar-brand {
    font-size: var(--nav-font-size);
}

nav.navbar .navbar-nav,
nav.navbar .navbar-nav .nav-link,
nav.navbar .navbar-nav .show > .nav-link,
nav.navbar .navbar-nav .nav-link:focus {
    color: var(--nav-link-color);
    text-decoration: none;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .12rem;
    text-transform: uppercase;
}

.navbar-toggler svg {
    height: 1.5rem;
    width: 1.5rem;
}

.navbar-toggler {
    color: var(--nav-link-color);
    border-color: var(--nav-link-color);
    background-color: transparent;
    padding: .25rem .75rem;
}

.navbar-toggler:hover {
    color: var(--nav-link-color-hover);
    border-color: var(--nav-link-color-hover);
}

.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-item {
    text-decoration: none;
    color: #000;
}

/* .header-bar a sets white text for the whole header (0,1,1 specificity), which
   otherwise beats the plain .dropdown-item rule above (0,1,0) and makes dropdown
   text invisible against the dropdown's white background. Scope under .header-bar
   to win that fight instead of reaching for !important. */
.header-bar .dropdown-item {
    color: #000;
}

.header-bar .dropdown-item:hover,
.header-bar .dropdown-item:focus,
.header-bar .dropdown-item:active {
    background: var(--color-tertiary);
    color: var(--color-tertiary-text);
}

/* Themed dropdown card — same rounded/shadow/accent-border language as the
   site's other card components (.gridBoxes-container, .qcard, .evt-date)
   instead of a plain flat white box. */
.dropdown-menu {
    border: none;
    border-top: 3px solid var(--color-accent);
    border-radius: 6px;
    background-color: #fff;
    box-shadow: 0 26px 50px -34px var(--theme-shadow);
    padding: 8px;
    margin-top: 10px;
}

.header-bar .dropdown-item {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .1rem;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 10px 16px;
}

/* Reference hovers just the text color, no highlight box behind the link. */
nav.navbar .navbar-nav li:hover .nav-link {
    color: var(--color-tertiary);
}

@media (min-width: 1200px) {
    .nav-item {
        white-space: nowrap;
    }

    .navbar-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 991px) {
    .dropdown-item {
        white-space: initial;
    }
}

/* =====================
   Hero / Header image
   Sits at page top behind transparent fixed header
   ===================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    background-image: linear-gradient(rgba(12, 48, 54, .45), rgba(12, 48, 54, .62)), url('/editor_upload/docs/headerimages/slideshow/1a.jpg');
    background-size: cover;
    background-position: center;
}

/* Hero overlay — text content centered over the hero image */
.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    padding: 120px 20px 80px;
    pointer-events: none;
}

.hero-overlay-inner {
    max-width: 820px;
    pointer-events: auto;
}

.hero-overlay-inner h1 {
    font-size: clamp(2.8rem, 6.5vw, 5rem);
    color: #fff;
    line-height: 1.08;
    letter-spacing: .005rem;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-overlay-inner p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .88);
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

/* Hero CTA buttons */
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .14rem;
    text-transform: uppercase;
    padding: 1.05em 2.2em;
    border: 1.5px solid var(--color-accent);
    border-radius: 2px;
    transition: background .25s, border-color .25s, color .25s;
    text-decoration: none;
    line-height: 1;
}

.hero-cta .btn-solid {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
}

.hero-cta .btn-solid:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
    color: #fff;
    text-decoration: none;
}

.hero-cta .btn-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.hero-cta .btn-light:hover {
    background: #fff;
    color: var(--color-secondary);
    border-color: #fff;
    text-decoration: none;
}

.header-img {
    position: relative;
    overflow: hidden;
    border-bottom: none;
    background-color: var(--color-secondary);
}

/* Dark gradient overlay */
#mnw-harmony-header-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(var(--theme-overlay) 0%, var(--theme-overlay-deep) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Interior header image */
.inner-header-img {
    background-size: cover;
    background-position-y: center;
    aspect-ratio: calc(var(--header-inner-width) / var(--header-inner-height));
    width: 100%;
}

/* =====================
   Content area
   ===================== */

.mnw-harmony-content-overflow {
    padding: 0;
}

main h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}


/* =====================
   Accordion
   ===================== */

.accordion {
    background: var(--featurebox-content-bgcolor);
}

.accordion-section-title {
    text-decoration: none;
    background: var(--title-bg-color);
    color: var(--title-text-color);
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .14rem;
    text-transform: uppercase;
}

.accordion-section-title.active, .accordion-section-title:hover {
    background: var(--title-bg-color);
    color: var(--title-link-color-hover);
}

/* =====================
   Grid / Feature boxes
   ===================== */

.gridBoxes-container, .homebox {
    border: 1px solid var(--theme-line);
    border-radius: 6px;
    background: var(--content-area-bgcolor);
    transition: border-color .25s, transform .25s, box-shadow .25s;
}

.gridBoxes-container:hover, .homebox:hover {
    border-color: var(--color-tertiary);
    transform: translateY(-4px);
    box-shadow: 0 26px 50px -34px var(--theme-shadow);
}

.gridBoxes-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;
    font-weight: 500;
    background: transparent;
    color: var(--color-secondary);
    border-bottom: 1px solid var(--theme-line);
    text-transform: none;
    letter-spacing: .005rem;
    line-height: 1.2;
    padding: 16px 20px;
}

.gridBoxes-item {
    border: none;
    padding: 14px 20px;
    font-size: 1rem;
    color: var(--theme-muted);
}

/* =====================
   Footer
   ===================== */

footer {
    background: var(--footer-bg-color);
    color: var(--footer-text-color);
    padding: 60px 0 32px;
}

footer a {
    color: var(--footer-link-color);
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 8px;
}

footer a:hover, footer a:active {
    color: var(--footer-link-color-hover);
}

footer h5, footer h4, footer h3, footer h2 {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .18rem;
    text-transform: uppercase;
    color: var(--color-tertiary);
    margin-bottom: 16px;
}


@media (max-width: 991px) {
    footer [class*=col] {
        margin-bottom: 10px;
    }
}

/* =====================
   Copyright
   ===================== */

.copyright {
    background: var(--copyright-bg-color);
    padding: 20px 0;
    text-align: var(--copyright-alignment);
    color: var(--copyright-text-color);
    border-top: 1px solid rgba(255,255,255,.13);
    font-size: 1rem;
}

.copyright a {
    color: var(--copyright-link-color);
    text-decoration: none;
}

.copyright a:hover, .copyright a:focus {
    color: var(--copyright-link-color-hover);
    text-decoration: underline;
}

/* =====================
   Stats bar (home page, between hero and content)
   ===================== */

.site-stats {
    background: var(--theme-surface);
}

.site-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.site-stat {
    text-align: center;
    padding: 48px 20px;
    position: relative;
}

/* Gold vertical dividers between stats */
.site-stat + .site-stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 54px;
    width: 1px;
    background: var(--color-accent);
    opacity: .5;
}

.site-stat-num {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 500;
    font-size: 3rem;
    color: var(--color-secondary);
    line-height: 1;
}

.site-stat-lbl {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .18rem;
    text-transform: uppercase;
    color: var(--theme-muted);
    margin-top: 10px;
}

/* =====================
   Shared content components
   ===================== */

/* Eyebrow — small uppercase section label */
.eyebrow {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .28rem;
    text-transform: uppercase;
    color: var(--color-accent-dark);
    display: inline-block;
    margin-bottom: 18px;
}

/* =====================
   Teaser sections (CMS-generated blocks)
   ===================== */

/* Section-level vertical rhythm — matches Lakeshore .sec */
.mnw-harmony-content-padding {
    padding: clamp(60px, 8vw, 60px) 0;
}


/* =====================
   Spotlight / feature row teaser
   ===================== */

/* Image column: fixed 50% width, styled like Lakeshore .media */
/*.mnw-teaser-spotlight-img {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0;
}*/

.mnw-teaser-spotlight-img img.mnw-img-responsive {
    /*width: 100%;*/
    /*height: 440px;*/
    /*object-fit: cover;*/
    /*border-radius: 6px;*/
    box-shadow: 0 40px 70px -40px var(--theme-shadow);
    /*display: block;*/
}

/* Text column: gap and vertical centering */
/*.mnw-teaser-spotlight-img ~ .col {
    padding-left: clamp(40px, 5.5vw, 80px);
    align-self: center;
}

.mnw-teaser-spotlight-img ~ .col h2 {
    font-size: clamp(2.1rem, 3.6vw, 3rem);
    margin-bottom: 16px;
}

.mnw-teaser-spotlight-img ~ .col p {
    margin-bottom: 22px;
}*/

/* Flip variant: image on right */
/*.mnw-teaser-spotlight-img-right {
    order: 2;
}

.mnw-teaser-spotlight-img-right ~ .col {
    padding-left: 15px;
    padding-right: clamp(40px, 5.5vw, 80px);
}*/

/* =====================
   Feature Columns teaser (two features side by side)
   ===================== */

/* --- SHOULD GO INTO HARMONY SASS (_harmony-teasers.scss) -----------------
   Structural layout only (dividers, spacing, responsive column split).
   This teaser has no generic version in the shared library yet, unlike
   the Icon/Spotlight teasers above — when promoting, copy these rules over
   and swap var(--theme-line) for a neutral default border color.
   --------------------------------------------------------------------- */

/*.mnw-feature-column-content .ft-item {
    margin-bottom: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--theme-line);
}

.mnw-feature-column-content .ft-item:first-child {
    padding-top: 0;
}

.mnw-feature-column-content .ft-item:last-child {
    border-bottom: none;
}

.mnw-feature-column-content .ft-miniDate {
    display: block;
    margin: 4px 0 6px;
}

.mnw-feature-column-content .ra {
    margin-top: 14px;
}

@media (min-width: 768px) {
    .mnw-feature-columns-row .mnw-feature-column:first-child:not(:last-child) {
        border-right: 1px solid var(--theme-line);
        padding-right: clamp(30px, 4vw, 60px);
    }

    .mnw-feature-columns-row .mnw-feature-column:last-child:not(:first-child) {
        padding-left: clamp(30px, 4vw, 60px);
    }
}*/

/* --- Lakeshore theming (fonts/colors) — stays site-specific --------- */

/*.mnw-feature-column-heading {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--color-accent);
}

.mnw-feature-column-content .ft-miniTitle {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-secondary);
}

.mnw-feature-column-content .ft-miniDate {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .1rem;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.mnw-feature-column-content .ft-miniContent {
    font-size: 1rem;
    color: var(--theme-muted);
}

.mnw-feature-column-content .ft-NewText {
    font-style: normal;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-accent);
    border-radius: 3px;
    padding: 2px 7px;
    margin-left: 8px;
    vertical-align: middle;
}

.mnw-feature-column-content .ra a {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .1rem;
    text-transform: uppercase;
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 3px;
    text-decoration: none;
}

.mnw-feature-column-content .ra a:hover {
    color: var(--color-tertiary);
}*/

/* =====================
   CTA Band
   ===================== */
.cta-band {
    padding: clamp(56px, 8vw, 96px) 0;
    text-align: center;
}

.cta-band .eyebrow {
    color: var(--color-accent);
}

.cta-band h2 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: inherit;
    margin: 10px 0 16px;
}

.cta-band p {
    color: inherit;
    opacity: .8;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 32px;
}

.cta-band .btn-cta {
    display: inline-block;
    font-family: "Mulish", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .14rem;
    text-transform: uppercase;
    color: var(--color-secondary);
    background: var(--color-accent);
    border: none;
    border-radius: 4px;
    padding: 14px 36px;
    text-decoration: none;
    transition: background .2s;
}

.cta-band .btn-cta:hover {
    background: var(--color-accent-dark);
    color: #fff;
}

/* =====================
   Responsive
   ===================== */

/* Gated on an actual "is the toggler visible" check (see base.twig) rather than a
   max-width media query. The shared framework's own NavBars.setBootstrap5OverflowBehavior
   can drop into burger mode at ANY viewport width — even a wide desktop one — if enough
   nav items are added that the inline row no longer fits, which a width-only media query
   would completely miss (leaving the toggler/drawer unstyled, cramped against the logo,
   exactly like before these fixes existed). html.mnw-nav-collapsed tracks the real,
   current state instead of trying to re-derive it from a guessed breakpoint. */

/* The framework's .container has no built-in gutter at this width (its desktop
   "margin" is really just max-width + auto-centering, which stops doing anything
   once the viewport is narrower than that max-width) — so without our own side
   padding the logo and toggler sit flush against the screen edges. The reference
   reserves ~4vw on each side; match it. */
html.mnw-nav-collapsed .header-inner {
    flex-wrap: nowrap;
    gap: 12px;
    padding-left: 4vw;
    padding-right: 4vw;
}

html.mnw-nav-collapsed .navbar-toggler {
    margin-left: auto;
    /* Above the open drawer's z-index (1050) — otherwise the drawer, which
       spans right over this button's position, intercepts the tap meant to
       close it and the menu becomes impossible to dismiss. */
    position: relative;
    z-index: 1060;
}

/* The logo eats most of .header-nav-wrap's flex width on small screens, so the
   collapse's old negative-margin bleed (sized for a full-width container) only
   stretched relative to that squeezed sliver and overflowed off the right edge.
   Bootstrap gives nav.navbar its own "position: relative", which would make it
   (not the fixed #site-header) the containing block for an absolutely-positioned
   collapse — drop that back to static so #site-header (full viewport width) is
   what left/right/top actually resolve against. */
html.mnw-nav-collapsed .header-nav-wrap nav.navbar {
    position: static;
}

/* Off-canvas drawer, not a below-header dropdown panel — matches the approved
   Lakeshore reference design (right-hand panel over ~70% of the screen,
   vertically centered links, larger touch targets).

   The fixed/positioned surface lives on .navbar-nav (the child), not on
   .navbar-collapse (the element Bootstrap's JS actually animates). Bootstrap
   drives its open/close transition by measuring .navbar-collapse's own
   scrollHeight and animating an inline "height" from 0 up to it — if the
   visible drawer sat directly on that element, it would render mid-height
   and then snap to full-size once Bootstrap clears the inline style. Once
   .navbar-nav is fixed-positioned it's out of normal flow, so it no longer
   contributes to that scrollHeight and Bootstrap's own animation becomes a
   no-op (0 to ~0) — invisible, instead of a glitch. The actual slide is our
   own transform transition instead, toggled by the "mnw-drawer-open" class
   (added/removed by the show.bs.collapse/hide.bs.collapse listener in
   base.twig) rather than Bootstrap's show/collapsing/show classes, since
   those get applied in the same tick .navbar-collapse becomes visible and
   would leave nothing for the transition to animate from. */
html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .navbar-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    /* 70% works fine at mobile/tablet widths, but on wide desktop viewports (where this
       drawer can also open - see the html.mnw-nav-collapsed comment above) 70% of the
       viewport is an enormous panel. Cap it so it never gets wider than a normal drawer. */
    width: min(70%, 420px);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    overflow-y: auto;
    background: var(--nav-bg-color);
    padding: 40px;
    z-index: 1050;
    transform: translateX(100%);
    transition: transform .32s ease;
}

html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse.mnw-drawer-open .navbar-nav {
    transform: translateX(0);
}

html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .nav-link {
    font-size: 1rem;
}

/* The "Hello"-style submenu renders as a plain white card by default (fitting
   against the light page background elsewhere); inside this dark drawer that
   reads as a stray white box, so give it a translucent treatment that stays
   part of the drawer instead. */
html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .dropdown-menu {
    position: static;
    background: rgba(255,255,255,.08);
    border-top-color: var(--color-accent);
    box-shadow: none;
    margin-top: 8px;
}

html.mnw-nav-collapsed .header-nav-wrap .navbar-collapse .dropdown-item {
    color: #fff;
}

@media (max-width: 575px) {
    .mnw-harmony-content-overflow {
        padding: 40px 0;
    }

    .hero-overlay {
        padding: 100px 24px 60px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 767px) {
    .site-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-stat + .site-stat::before {
        display: none;
    }

    .site-stat:nth-child(n+3) {
        border-top: 1px solid var(--theme-line);
    }

    /*.mnw-teaser-spotlight-img,
    .mnw-teaser-spotlight-img-right {
        flex: 0 0 100%;
        max-width: 100%;
        order: 0;
    }*/
/*
    .mnw-teaser-spotlight-img img.mnw-img-responsive {
        height: 280px;
    }*/

    /*.mnw-teaser-spotlight-img ~ .col,
    .mnw-teaser-spotlight-img-right ~ .col {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 28px;
    }*/
}

/* =====================
   Content block styles
   Styles from content
  These are what I had in the editors
   ===================== */

/* Spotlight text link */
.lk {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .16rem;
    text-transform: uppercase;
    color: var(--color-secondary);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 4px;
    text-decoration: none;
}

/* Footer — brand column */
.fbrand {
    display: flex;
    flex-direction: column;
    max-width: 260px;
}

.fbrand .b {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 600;
    font-size: 1.5rem;
    letter-spacing: .2rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 14px;
}

/* Announcements */
.ann {
    margin-bottom: 24px;
}

.ann-label {
    font-family: "Mulish", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .16rem;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.ann h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.4rem;
    margin: 4px 0;
}

.ann p {
    font-size: 1rem;
    color: var(--body-text-color);
}

/* Events */
.evt {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--theme-line);
}

.evt-date {
    flex: 0 0 64px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--theme-line);
    border-radius: 6px;
    padding: 8px 0;
}

.evt-month {
    font-family: "Mulish", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .12rem;
    text-transform: uppercase;
    color: var(--color-accent-dark);
}

.evt-day {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.7rem;
    color: var(--color-secondary);
    line-height: 1;
}

.evt h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.35rem;
    margin: 0 0 4px;
}

.evt p {
    font-size: 1rem;
    color: var(--theme-muted);
    margin: 0;
}

/* News + events two-column layout */
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 5vw, 72px);
}

.news-grid h2 {
    font-size: 1.9rem;
    margin-bottom: 26px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--color-accent);
}

@media (max-width: 767px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}


/* =====================
   Footer column widths
   The footer layout only supports 3 editable columns, but the design needs 4 logical
   groups (Brand, Community, Residents, Contact) — Community and Residents are both
   authored inside the 2nd editor. Widen that column so the two groups sit side by side
   without wrapping, and narrow the outer two to compensate.
   ===================== */
@media (min-width: 992px) {
    footer .row > .col-lg-4:nth-child(2) {
        flex: 0 0 50%;
        max-width: 50%;
    }

    footer .row > .col-lg-4:nth-child(1),
    footer .row > .col-lg-4:nth-child(3) {
        flex: 0 0 25%;
        max-width: 25%;
    }
}