@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@300;400;700&family=Raleway:wght@700;800&family=Playfair+Display:wght@700;900&display=swap');

:root {
    --red: #8C1919;
    --red-dark: #6B1212;
    --gray: #6D7278;
    --light-gray: #D4DDED;
    --border: #C2D0E5;
    --text: #2C2C2C;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Merriweather', serif;
    color: var(--text);
    background: linear-gradient(150deg, #E2EAF4 0%, #E5ECF5 50%, #EAF0F7 100%);
    background-attachment: fixed;
    line-height: 1.8;
}

/* === Navigation === */
nav {
    background: var(--white);
    border-bottom: 3px solid var(--red);
    padding: 0 2rem;
    height: 80px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-logo img {
    height: 200px;
    padding: 0;
    display: block;
    mix-blend-mode: multiply;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.4rem 0;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--red);
    border-bottom-color: var(--red);
}

.nav-remote-btn {
    display: inline-block;
    margin-left: 1.5rem;
    padding: 0.45rem 1rem;
    background: var(--red);
    color: #fff !important;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: background 0.2s;
}
.nav-remote-btn:hover {
    background: #6e1212;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gray);
    transition: all 0.3s;
}

/* === Hero === */
.hero {
    background: linear-gradient(135deg, rgba(26,31,46,0.52) 0%, rgba(37,43,59,0.62) 100%),
                url('https://images.unsplash.com/photo-1481627834876-b7833e8f5570?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 5.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(140,25,25,0.12) 0%, transparent 65%);
}

.hero-content {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0,0,0,0.55);
}

.hero h1 em {
    font-style: normal;
    color: #c9393a;
}

.hero p {
    font-size: 1.12rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2.2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0,0,0,0.45);
}

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--red);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    border-radius: 2px;
}

.btn:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
}

/* === Page Header (inner pages) === */
.page-header {
    --ph-img: url('https://images.unsplash.com/photo-1505664194779-8beaceb93a56?auto=format&fit=crop&w=1400&q=80');
    background: linear-gradient(135deg, rgba(26,31,46,0.80) 0%, rgba(37,43,59,0.86) 100%),
                var(--ph-img) center/cover no-repeat;
    color: var(--white);
    padding: 3.5rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--red);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.5px;
}

.page-header p {
    color: rgba(255,255,255,0.82);
    margin-top: 0.6rem;
    font-size: 1rem;
}

/* === Sections === */
.section {
    padding: 4.5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.7rem;
    color: var(--red);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.divider {
    width: 55px;
    height: 3px;
    background: var(--red);
    margin: 0.6rem 0 2rem 0;
}

/* === Card Icons === */
.card-icon {
    width: 44px;
    height: 44px;
    color: var(--red);
    margin-bottom: 1.1rem;
    display: block;
}

/* === Home Service Cards === */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 0.5rem;
}

.card {
    background: rgba(225,236,252,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(160,195,240,0.55);
    border-top: 4px solid var(--red);
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(60,100,160,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover {
    box-shadow: 0 12px 36px rgba(60,100,160,0.18);
    transform: translateY(-3px);
}

.card h3 {
    font-family: 'Raleway', sans-serif;
    color: var(--red);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card p {
    color: var(--gray);
    font-size: 0.93rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.card-link {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.card-link:hover {
    text-decoration: underline;
}

/* === Anchor offset for sticky nav === */
[id] {
    scroll-margin-top: 140px;
}

/* === Services Page === */
.service-block {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
}

.service-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-block h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.5rem;
    color: var(--red);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-block p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text);
}

.badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 0.3rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.sub-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 1.75rem;
}

.sub-service {
    background: rgba(225,236,252,0.80);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(160,195,240,0.45);
    border-left: 4px solid var(--red);
    padding: 1.5rem 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 2px 12px rgba(60,100,160,0.08);
}

.sub-service h4 {
    font-family: 'Raleway', sans-serif;
    color: var(--red);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.65rem;
}

.sub-service p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* === News Feed === */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    padding: 1.25rem 1.5rem;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.news-source {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--red);
    margin-bottom: 0.5rem;
}

.news-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    flex: 1;
}

.news-title a {
    color: var(--text);
    text-decoration: none;
}

.news-title a:hover {
    color: var(--red);
}

.news-date {
    font-size: 0.78rem;
    color: var(--gray);
    margin-bottom: 0;
}

.news-loading {
    color: var(--gray);
    font-size: 0.95rem;
    grid-column: 1 / -1;
}

/* === Remote Session Bar === */
.remote-session-bar {
    padding: 2.5rem 2rem;
}
.remote-session-inner {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}
.remote-session-text h2 {
    color: #1a1f2e;
    font-family: 'Raleway', sans-serif;
    font-size: 1.4rem;
    margin: 0 0 0.4rem;
}
.remote-session-text p {
    color: #444;
    margin: 0;
    font-size: 0.95rem;
}
.remote-session-btn {
    white-space: nowrap;
}

/* === Philosophy / About === */
.philosophy-bg {
    background: var(--light-gray);
    padding: 4.5rem 2rem;
}

.philosophy-inner {
    max-width: 820px;
    margin: 0 auto;
}

.philosophy-inner p {
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.02rem;
}

/* === Contact === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 0.5rem;
}

.contact-item {
    background: rgba(225,236,252,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(160,195,240,0.55);
    border-top: 4px solid var(--red);
    padding: 2.2rem 2rem;
    text-align: center;
    box-shadow: 0 4px 24px rgba(60,100,160,0.10);
}

.contact-item .icon {
    font-size: 2.2rem;
    margin-bottom: 0.85rem;
    color: var(--red);
}

.contact-item h3 {
    color: var(--gray);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item p {
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--red);
}

/* === Footer === */
footer {
    background: #1c1c1c;
    color: rgba(255,255,255,0.55);
    padding: 2.2rem 2rem;
    text-align: center;
}

.footer-contact {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.footer-contact a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    margin: 0 0.75rem;
}

.footer-contact a:hover {
    color: #c9393a;
}

.footer-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 1rem auto;
}

.footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* === Blog Cards === */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 0.5rem;
}

.blog-card {
    background: rgba(225,236,252,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(160,195,240,0.55);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(60,100,160,0.10);
    transition: box-shadow 0.2s, transform 0.2s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    box-shadow: 0 12px 36px rgba(60,100,160,0.18);
    transform: translateY(-3px);
}

.blog-card-img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

.blog-card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.78rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.6rem;
}

.blog-card h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 1.25rem;
}

.blog-card .card-link {
    margin-top: auto;
}

.blog-tag {
    display: inline-block;
    background: var(--light-gray);
    color: var(--red);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
    margin-bottom: 0.75rem;
}

/* === Blog Post Article === */
.post-header {
    --ph-img: url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1400&q=80');
    background: linear-gradient(135deg, rgba(26,31,46,0.88) 0%, rgba(37,43,59,0.92) 100%),
                var(--ph-img) center/cover no-repeat;
    color: var(--white);
    padding: 4rem 2rem 3rem;
    border-bottom: 4px solid var(--red);
}

.post-header-inner {
    max-width: 820px;
    margin: 0 auto;
}

.post-header .blog-tag {
    margin-bottom: 1rem;
}

.post-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.post-header .post-meta {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.post-body {
    max-width: 820px;
    margin: 0 auto;
    padding: 3.5rem 2rem;
}

.post-body p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.post-body p:last-child {
    margin-bottom: 0;
}

.post-back {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

/* === Support Form === */
.support-form {
    max-width: 720px;
    margin: 0 auto;
    background: rgba(225,236,252,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(160,195,240,0.55);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(60,100,160,0.10);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.25rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(180,200,230,0.7);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    font-family: 'Merriweather', serif;
    font-size: 0.95rem;
    color: var(--text);
    background: rgba(235,243,255,0.90);
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* === Bio Block (About page) === */
.bio-block {
    display: flex;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2rem;
}

.bio-photo-col {
    flex: 0 0 160px;
    width: 160px;
    margin-right: 1.5rem;
}

.bio-photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-top: 4px solid var(--red);
    display: block;
    background: var(--light-gray);
}

.bio-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    border-top: 4px solid var(--red);
    display: block;
}

.bio-photo-placeholder {
    width: 160px;
    height: 160px;
    border-top: 4px solid var(--red);
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bio-photo-placeholder svg {
    width: 90%;
    height: 90%;
}

.photo-caption {
    font-size: 0.72rem;
    color: var(--gray);
    text-align: center;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bio-text p {
    margin-bottom: 1rem;
    line-height: 1.9;
}

.credential-list {
    list-style: none;
    padding: 0;
    margin-top: 0.75rem;
}

.credential-list li {
    padding: 0.5rem 0 0.5rem 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 0.95rem;
    position: relative;
}

.credential-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
}

.credential-list li:last-child {
    border-bottom: none;
}

/* === Certifications Strip === */
.certs-strip {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.4rem 2rem;
}

.certs-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.certs-label {
    font-family: 'Raleway', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray);
}

.cert-badge-wrap {
    margin-top: 1.5rem;
    width: 300px;
    height: 91px;
    background-image: url('../images/TMAdvancedCertified.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-color: var(--light-gray);
    background-blend-mode: multiply;
}

/* === Stats Strip === */
.stats-strip {
    background: #1a1f2e;
    padding: 2.75rem 2rem;
    border-bottom: 4px solid var(--red);
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat {
    padding: 0 1rem;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-family: 'Raleway', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.45rem;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
}

/* === News Dark Background === */
.news-bg {
    background: #1a1f2e;
}

.news-bg .section-title {
    color: var(--white);
}

.news-bg .divider {
    background: var(--red);
}

.news-bg .news-loading {
    color: rgba(255,255,255,0.45);
}

.news-bg .news-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--red);
}

.news-bg .news-card:hover {
    background: rgba(255,255,255,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35);
    transform: translateY(-3px);
}

.news-bg .news-source {
    color: #c9393a;
}

.news-bg .news-title a {
    color: rgba(255,255,255,0.88);
}

.news-bg .news-title a:hover {
    color: #c9393a;
}

.news-bg .news-date {
    color: rgba(255,255,255,0.3);
}

/* === Form Feedback (Formspree AJAX) === */
.fs-success {
    display: none;
    background: #f0f9f0;
    border-left: 4px solid #2d8a2d;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a5c1a;
    font-size: 0.95rem;
    line-height: 1.7;
}

.fs-form-error {
    display: none;
    background: #fdf5f5;
    border-left: 4px solid var(--red);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--red);
    font-size: 0.95rem;
    line-height: 1.7;
}

.fs-form-error a {
    color: var(--red);
    font-weight: 600;
}

.field-error {
    display: block;
    color: var(--red);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 0;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"],
select[aria-invalid="true"] {
    border-color: var(--red);
}

/* === Services Photo Break === */
.services-photo-break {
    background: linear-gradient(135deg, rgba(26,31,46,0.84) 0%, rgba(140,25,25,0.68) 100%),
                url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
    padding: 3.75rem 2rem;
    text-align: center;
}

.services-photo-break p {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 700;
    font-style: italic;
    color: var(--white);
    line-height: 1.65;
    max-width: 760px;
    margin: 0 auto;
}

/* === About Intro Grid === */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3.5rem;
    align-items: center;
}

.about-intro-photo img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-top: 4px solid var(--red);
    display: block;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* === Responsive === */
@media (max-width: 768px) {
    nav {
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 3px solid var(--red);
        box-shadow: 0 6px 16px rgba(0,0,0,0.1);
        padding: 0.5rem 0;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        display: block;
        padding: 0.85rem 2rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .bio-block {
        flex-direction: column;
    }

    .bio-photo-col {
        width: 120px;
        flex: 0 0 120px;
    }

    .bio-photo {
        width: 120px;
        height: 120px;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .stat:nth-child(2),
    .stat:last-child {
        border-bottom: none;
    }

    .section {
        padding: 3rem 1.25rem;
    }

    .philosophy-bg {
        padding: 3rem 1.25rem;
    }

    .page-header {
        padding: 2.5rem 1.25rem;
    }

    .about-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-photo {
        order: -1;
    }

    .about-intro-photo img {
        height: 220px;
    }

    body {
        background: #E5ECF5;
        background-attachment: scroll;
    }
}
