﻿
        :root {
            --wt-green: #5f7a32;
            --wt-green-dark: #4a6128;
            --wt-green-light: #9cb16c;
            --wt-purple: #4a3173;
            --wt-purple-dark: #362456;
            --wt-purple-light: #6b4c9a;
            --wt-text: #1f1f1f;
            --wt-muted: #4a4a4a;
            --wt-border: #c8c8c8;
            --wt-nav-bg: #ececec;
            --wt-link: #1a4f9c;
            --wt-link-hover: #0f3468;
            --wt-focus: #005fcc;
            --wt-footer-gold: #c9a84c;
            --wt-footer-purple: #4a3558;
            --wt-footer-green: #8fa86b;
            --wt-max: 1080px;
            --wt-font-sans: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
            --wt-font-serif: Georgia, "Times New Roman", Times, serif;
            --wt-font-size-base: 1.0625rem;
            --wt-line-height: 1.6;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            color: var(--wt-text);
            font-family: var(--wt-font-sans);
            font-size: var(--wt-font-size-base);
            line-height: var(--wt-line-height);
            background: #f7f7f5;
        }

        h1, h2, h3, h4, h5, h6,
        .page-title,
        .service-section h2,
        .newsletter-card h2,
        .bio-heading {
            font-family: var(--wt-font-serif);
            font-weight: 700;
            line-height: 1.25;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        a {
            color: var(--wt-link);
        }

        a:hover {
            color: var(--wt-link-hover);
        }

        a:focus-visible,
        button:focus-visible {
            outline: 3px solid var(--wt-focus);
            outline-offset: 3px;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        .skip-link {
            position: absolute;
            top: -100%;
            left: 16px;
            z-index: 1000;
            padding: 12px 18px;
            border-radius: 0 0 6px 6px;
            background: #000000;
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
        }

        .skip-link:focus,
        .skip-link:focus-visible {
            top: 0;
        }

        .page {
            width: min(var(--wt-max), calc(100% - 24px));
            max-width: var(--wt-max);
            margin: 0 auto;
        }

        .site-header {
            margin-top: 12px;
        }

        .header-banner {
            display: block;
            overflow: hidden;
            border-radius: 6px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .header-banner img {
            display: block;
            width: 100%;
        }

        .layout {
            display: grid;
            grid-template-columns: 240px minmax(0, 1fr);
            gap: 28px;
            align-items: start;
            margin-top: 24px;
        }

        .nav-toggle {
            display: none;
            width: 100%;
            margin-bottom: 12px;
            padding: 12px 16px;
            border: 1px solid var(--wt-border);
            border-radius: 6px;
            background: #ffffff;
            color: var(--wt-text);
            font: inherit;
            font-weight: 700;
            text-align: left;
            cursor: pointer;
        }

        .sidebar {
            position: sticky;
            top: 16px;
        }

        .nav-menu {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .nav-menu li + li {
            margin-top: 4px;
        }

        .nav-menu a {
            display: block;
            padding: 10px 12px;
            border-radius: 4px;
            background: var(--wt-nav-bg);
            color: #1a1a1a;
            font-size: 0.8125rem;
            font-weight: 700;
            line-height: 1.3;
            text-decoration: none;
        }

        .nav-menu a:hover {
            background: var(--wt-green-light);
            color: #ffffff;
            text-decoration: underline;
        }

        .nav-menu a:focus-visible,
        .nav-menu a[aria-current="page"] {
            background: var(--wt-green);
            color: #ffffff;
            text-decoration: none;
        }

        .main-content {
            min-width: 0;
            padding-bottom: 40px;
        }

        .page-title {
            margin: 0 0 28px;
            padding-bottom: 16px;
            border-bottom: 3px solid var(--wt-green-light);
            color: var(--wt-purple-dark);
            font-size: clamp(2rem, 4.5vw, 3rem);
            letter-spacing: -0.02em;
        }

        .promo-row {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 20px;
            margin-bottom: 28px;
        }

        .promo-card {
            overflow: hidden;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
        }

        .newsletter-card {
            position: relative;
            overflow: hidden;
            border: 2px solid #d8c9ef;
            background:
                linear-gradient(135deg, rgba(74, 49, 115, 0.96), rgba(107, 76, 154, 0.92)),
                radial-gradient(circle at top right, rgba(156, 177, 108, 0.35), transparent 55%);
            color: #ffffff;
        }

        .newsletter-card::before {
            position: absolute;
            top: -40px;
            right: -40px;
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            content: "";
            pointer-events: none;
        }

        .newsletter-inner {
            position: relative;
            display: grid;
            gap: 16px;
            padding: 24px 24px 26px;
        }

        .newsletter-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            width: fit-content;
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.16);
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .newsletter-badge svg {
            width: 18px;
            height: 18px;
            fill: currentColor;
        }

        .newsletter-card h2 {
            margin: 0;
            font-size: clamp(1.5rem, 3vw, 2rem);
            line-height: 1.2;
        }

        .newsletter-card p {
            margin: 0;
            max-width: 34ch;
            color: rgba(255, 255, 255, 0.92);
            font-size: 0.98rem;
            line-height: 1.55;
        }

        .newsletter-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: fit-content;
            min-height: 48px;
            padding: 12px 22px;
            border: 2px solid #ffffff;
            border-radius: 999px;
            background: #ffffff;
            color: var(--wt-purple-dark);
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            transition: transform 160ms ease, background 160ms ease, color 160ms ease;
        }

        .newsletter-button:hover {
            background: var(--wt-green-light);
            border-color: var(--wt-green-light);
            color: #ffffff;
            text-decoration: none;
        }

        .newsletter-button:focus-visible {
            background: #ffffff;
            color: var(--wt-purple-dark);
        }

        .image-box {
            display: block;
            padding: 14px 16px;
            background: linear-gradient(180deg, var(--wt-purple), var(--wt-purple-dark));
            color: #ffffff;
            font-size: 1rem;
            font-weight: 700;
            text-align: center;
            letter-spacing: 0.02em;
        }

        .promo-body {
            padding: 18px 20px 22px;
            text-align: center;
        }

        .promo-body p {
            margin: 0 0 12px;
            font-size: 0.92rem;
        }

        .promo-body p:last-child {
            margin-bottom: 0;
        }

        .donate-image {
            display: block;
            width: 100%;
            max-height: 120px;
            object-fit: cover;
        }

        .intro-block {
            display: grid;
            grid-template-columns: 250px minmax(0, 1fr);
            gap: 24px;
            align-items: center;
            margin-bottom: 20px;
            padding: 18px 20px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }

        .building-photo {
            display: block;
            width: 250px;
            border-radius: 4px;
        }

        .address {
            margin: 0 0 12px;
            font-size: 0.9rem;
            font-style: normal;
            font-weight: 700;
            line-height: 1.4;
        }

        .about-text {
            margin: 0;
            color: var(--wt-muted);
            font-size: 1rem;
        }

        .contact-panel {
            padding: 16px 20px 18px;
            border-radius: 8px;
            background:
                url("../images/home_bg_pic.jpg") right top / auto 88% no-repeat,
                #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }

        .contact-panel-grid {
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
            gap: 24px;
            align-items: start;
        }

        .contact-details h2,
        .contact-links h3 {
            margin: 0 0 10px;
            font-size: 1.1rem;
        }

        .contact-links {
            padding-top: 2px;
            text-align: right;
        }

        .contact-links h3 {
            text-align: right;
        }

        .contact-table {
            width: 100%;
            margin: 0 0 10px;
            border-collapse: collapse;
            font-size: 0.875rem;
        }

        .contact-table th,
        .contact-table td {
            padding: 3px 8px 3px 0;
            vertical-align: top;
            text-align: left;
        }

        .contact-table th {
            width: 42%;
            font-weight: 700;
        }

        .contact-table a {
            color: inherit;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .contact-table a:hover,
        .contact-table a:focus-visible {
            color: var(--wt-link);
        }

        .quick-links {
            margin: 0;
            padding: 0;
            list-style: none;
            font-size: 0.875rem;
        }

        .quick-links li + li {
            margin-top: 8px;
        }

        .quick-links a {
            display: block;
            font-weight: 700;
            text-align: right;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .hours {
            margin: 0;
            font-size: 0.875rem;
        }

        .site-footer {
            margin: 20px 0 36px;
            padding-top: 20px;
            border-top: 1px solid var(--wt-border);
            text-align: center;
        }

        .footer-mark {
            position: relative;
            width: 88px;
            height: 72px;
            margin: 0 auto 16px;
        }

        .footer-block {
            position: absolute;
            width: 44px;
            height: 44px;
        }

        .footer-block--gold {
            top: 0;
            left: 0;
            z-index: 3;
            border-radius: 10px;
            background: var(--wt-footer-gold);
        }

        .footer-block--purple {
            top: 14px;
            left: 22px;
            z-index: 2;
            background: var(--wt-footer-purple);
        }

        .footer-block--green {
            top: 28px;
            left: 44px;
            z-index: 1;
            border-radius: 10px;
            background: var(--wt-footer-green);
        }

        .footer-text {
            margin: 0;
            color: var(--wt-text);
            font-size: 0.875rem;
            line-height: 1.5;
        }

        .footer-text + .footer-text {
            margin-top: 4px;
        }

        @media (max-width: 900px) {
            .layout {
                grid-template-columns: 1fr;
            }

            .nav-toggle {
                display: block;
            }

            .sidebar {
                position: static;
            }

            .main-content {
                margin-top: 0;
            }

            .nav-menu {
                display: none;
            }

            .sidebar.is-open .nav-menu {
                display: block;
            }

            .promo-row,
            .intro-block {
                grid-template-columns: 1fr;
            }

            .building-photo {
                width: 100%;
                max-width: 320px;
            }

            .contact-panel {
                background:
                    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.98)),
                    url("../images/home_bg_pic.jpg") right top / cover no-repeat;
            }

            .contact-panel-grid {
                grid-template-columns: 1fr;
            }

            .contact-links,
            .contact-links h3,
            .quick-links a {
                text-align: left;
            }
        }

        @media (max-width: 560px) {
            .promo-row {
                gap: 14px;
            }

            .contact-panel {
                padding: 16px;
            }

            .site-footer {
                margin-bottom: 28px;
            }

            .newsletter-button {
                width: 100%;
            }
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            margin: -1px;
            padding: 0;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            clip-path: inset(50%);
            white-space: nowrap;
            border: 0;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }

            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .services-intro {
            margin: 0 0 24px;
            padding: 16px 18px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
            font-size: 0.98rem;
        }

        .service-section {
            margin-bottom: 20px;
            padding: 18px 20px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }

        .service-section h2 {
            margin: 0 0 14px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--wt-green-light);
            color: var(--wt-purple-dark);
            font-size: 1.35rem;
            line-height: 1.3;
        }

        .service-section h2 a {
            font-family: var(--wt-font-sans);
            font-size: 0.95rem;
            font-weight: 700;
            white-space: nowrap;
        }

        .service-section h3 {
            margin: 18px 0 8px;
            font-size: 1rem;
            color: var(--wt-text);
        }

        .service-section h3:first-of-type {
            margin-top: 0;
        }

        .service-list {
            margin: 0;
            padding-left: 1.25rem;
            font-size: 0.95rem;
        }

        .service-list li + li {
            margin-top: 6px;
        }

        .service-list a {
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .service-standalone {
            margin: 14px 0 0;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .service-section p {
            margin: 0 0 12px;
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .service-section p:last-child {
            margin-bottom: 0;
        }

        .service-section .address {
            margin: 0 0 12px;
            font-size: 0.95rem;
            font-style: normal;
            line-height: 1.55;
        }

        .officials-section {
            padding: 18px 20px 22px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }

        .officials-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 20px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .official-card a {
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
            padding: 16px 12px;
            border: 1px solid var(--wt-border);
            border-radius: 8px;
            background: #fafafa;
            color: inherit;
            text-align: center;
            text-decoration: none;
        }

        .official-card a:hover,
        .official-card a:focus-visible {
            border-color: var(--wt-green-light);
            background: #ffffff;
            text-decoration: none;
        }

        .official-card img {
            display: block;
            width: 100%;
            max-width: 170px;
            margin-bottom: 12px;
            border-radius: 4px;
        }

        .official-name {
            display: block;
            font-size: 0.95rem;
            font-weight: 700;
            line-height: 1.35;
        }

        .official-title {
            display: block;
            margin-top: 4px;
            color: var(--wt-muted);
            font-size: 0.875rem;
            font-weight: 700;
        }

        .officials-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100%;
            padding: 16px;
            border: 1px solid var(--wt-border);
            border-radius: 8px;
            background: #fafafa;
        }

        .officials-logo img {
            max-width: 170px;
        }

        @media (max-width: 900px) {
            .officials-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 560px) {
            .officials-grid {
                grid-template-columns: 1fr;
            }
        }

        .content-section {
            margin-bottom: 20px;
            padding: 18px 20px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }

        .content-section h2 {
            margin: 0 0 14px;
            font-size: 1rem;
            font-style: italic;
            color: var(--wt-purple-dark);
        }

        .content-section p {
            margin: 0 0 14px;
            color: var(--wt-muted);
            font-size: 1rem;
        }

        .content-section p:last-child {
            margin-bottom: 0;
        }

        .content-chart {
            display: block;
            width: 100%;
            max-width: 520px;
            margin-top: 8px;
            border-radius: 4px;
        }

        .bio-section {
            padding: 18px 20px 22px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }

        .bio-layout {
            display: grid;
            grid-template-columns: 200px minmax(0, 1fr);
            gap: 24px;
            align-items: start;
        }

        .bio-photo {
            display: block;
            width: 100%;
            border-radius: 4px;
        }

        .bio-heading {
            margin: 0 0 8px;
            font-size: 1.25rem;
        }

        .bio-title {
            margin: 0 0 12px;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .bio-contact {
            margin: 0 0 16px;
            font-size: 0.95rem;
        }

        .bio-text p {
            margin: 0 0 14px;
            color: var(--wt-muted);
            font-size: 1rem;
        }

        .bio-text p:last-child {
            margin-bottom: 0;
        }

        .bio-return {
            margin-top: 20px;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .staff-section > h2 {
            margin: 0 0 24px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--wt-green-light);
            color: var(--wt-purple-dark);
            font-size: 1.35rem;
        }

        .staff-profile + .staff-profile {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid var(--wt-border);
        }

        .minutes-intro {
            margin: 0 0 16px;
            font-size: 0.95rem;
            line-height: 1.55;
        }

        .year-filter {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 14px;
            font-size: 0.95rem;
        }

        .year-filter select {
            min-height: 40px;
            padding: 6px 10px;
            border: 1px solid var(--wt-border);
            border-radius: 4px;
            font-size: 0.95rem;
        }

        .minutes-table-wrap {
            overflow-x: auto;
        }

        .minutes-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 0.9rem;
        }

        .minutes-table th,
        .minutes-table td {
            padding: 10px 12px;
            border-bottom: 1px solid var(--wt-border);
            text-align: left;
            vertical-align: top;
        }

        .minutes-table th {
            background: #f5f0fa;
            color: var(--wt-purple-dark);
            font-weight: 700;
        }

        .minutes-table tr:nth-child(even) td {
            background: #fafafa;
        }

        .minutes-table a {
            font-weight: 700;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        .minutes-doc {
            padding: 18px 20px 22px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
        }

        .minutes-body {
            font-size: 0.98rem;
            line-height: 1.65;
            max-width: 52rem;
        }

        .minutes-body p {
            margin: 0 0 12px;
        }

        .minutes-body .minutes-heading {
            margin: 1.5em 0 0.5em;
            font-family: var(--wt-font-serif, Georgia, serif);
            font-size: 1.05rem;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: #2d4a3e;
            border-bottom: 1px solid #d8e0dc;
            padding-bottom: 0.35em;
        }

        .minutes-body .minutes-heading:first-child {
            margin-top: 0;
        }

        .minutes-body .minutes-motion {
            color: #1a3d5c;
            border-bottom-color: #c5d4e0;
        }

        .minutes-body .minutes-report {
            margin: 1.1em 0 0.35em;
            font-size: 0.95rem;
            font-weight: 700;
            color: #3d4f45;
        }

        .minutes-body .minutes-meta {
            margin: 0.25em 0 12px;
            font-size: 0.93rem;
            color: #555;
        }

        .minutes-body .minutes-vote {
            margin: 0.35em 0 14px;
            padding: 0.5em 0.75em;
            background: #f4f7f5;
            border-left: 3px solid #5a8f72;
            font-size: 0.93rem;
        }

        .minutes-body .minutes-vote strong {
            color: #2d4a3e;
        }

        .minutes-body .minutes-list {
            margin: 0.25em 0 14px 1.25em;
            padding: 0;
        }

        .minutes-body .minutes-list li {
            margin: 0.35em 0;
        }

        .minutes-body .minutes-closing {
            margin-top: 1.25em;
            font-style: italic;
        }

        .minutes-body .minutes-signature {
            margin-top: 1.5em;
            font-weight: 600;
        }

        .minutes-download,
        .minutes-return {
            margin: 18px 0 0;
            font-size: 0.95rem;
        }

        /* Scraped CMS markup: normalize inline font overrides */
        .main-content [style*="font-size"],
        .main-content [style*="font-family"],
        .main-content font {
            font-size: inherit !important;
            font-family: inherit !important;
        }

        .main-content p,
        .main-content li,
        .main-content td,
        .main-content th {
            font-size: inherit;
            line-height: inherit;
        }

        .main-content h2 {
            margin: 1.35em 0 0.65em;
            font-size: 1.35rem;
            color: var(--wt-purple-dark);
        }

        .main-content h2:first-child {
            margin-top: 0;
        }

        .main-content h3 {
            margin: 1.1em 0 0.5em;
            font-size: 1.1rem;
            color: var(--wt-text);
        }

        .main-content p {
            margin: 0 0 1em;
        }

        .main-content p:last-child {
            margin-bottom: 0;
        }

        .main-content strong,
        .main-content b {
            font-weight: 700;
        }

        .main-content .title {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--wt-purple-dark);
        }

        @media (max-width: 700px) {
            .bio-layout {
                grid-template-columns: 1fr;
            }

            .bio-photo {
                max-width: 200px;
            }
        }
