/*
Theme Name: The Natural Cure Doctor
Theme URI: https://naturalcuredoctor.com
Author: Dr. Robert Janda & collaborators
Author URI: https://naturalcuredoctor.com
Description: Custom WordPress theme for The Natural Cure Doctor — Dr. Robert Janda's chiropractic and natural healing practice in Newport Beach, California. Derived from NEW_V1 static HTML design. Green/gold palette with DM Serif Display + Inter typography.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9.4
Requires PHP: 7.4
License: Proprietary — all rights reserved
License URI: https://naturalcuredoctor.com/license/
Text Domain: naturalcuredoctor
Tags: medical, chiropractic, newport-beach, one-location-business

This theme consolidates CSS from seven design source files:
  index.html, about.html, chiropractic.html, wellness.html,
  testimonials.html, newsletter.html, contact.html
Each section below is delimited with a comment header pointing to its source.
*/

/* ============================================================
   BASE TOKENS & SHARED STYLES — extracted from index.html
   ============================================================ */
        :root {
            --green: #4CAF50;
            --green-dark: #388E3C;
            --green-light: #E8F5E9;
            --green-muted: #2E7D32;
            --gold: #C9A96E;
            --gold-light: #F5EFE0;
            --dark: #1B2E1B;
            --text: #4A4A4A;
            --text-light: #777777;
            --white: #FFFFFF;
            --off-white: #FAFBFA;
            --border: #E8ECE8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        /* ─── HEADER ─── */
        header {
            position: fixed; top: 0; width: 100%;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s ease;
        }
        header.scrolled { box-shadow: var(--shadow-md); }

        .header-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; justify-content: space-between; align-items: center; height: 72px;
        }

        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

        .logo-mark {
            width: 54px; height: 42px; background: var(--green); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-family: 'DM Serif Display', serif;
            font-size: 15px; font-weight: 700; line-height: 1; flex-shrink: 0; letter-spacing: 1.5px;
        }

        .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
        .logo-text .name { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--dark); letter-spacing: -0.3px; }
        .logo-text .tagline { font-size: 10.5px; color: var(--green-muted); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }

        nav { display: flex; gap: 8px; align-items: center; }
        nav a {
            font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none;
            padding: 8px 14px; border-radius: 8px; transition: all 0.2s ease;
        }
        nav a:hover { color: var(--green); background: var(--green-light); }
        nav a.active { color: var(--white); background: var(--green); }
        .nav-cta { background: var(--green)!important; color: var(--white)!important; font-weight: 600!important; padding: 10px 20px!important; border-radius: 10px!important; margin-left: 8px; }
        .nav-cta:hover { background: var(--green-dark)!important; }

        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 6px 0; transition: 0.3s; border-radius: 2px; }

        /* ─── HERO ─── */
        .hero {
            margin-top: 72px; position: relative; min-height: 85vh;
            display: flex; align-items: center; overflow: hidden;
            background: #0a1628;
        }
        .hero-bg {
            position: absolute; inset: 0; overflow: hidden;
        }
        .hero-bg svg {
            position: absolute; inset: 0; width: 100%; height: 100%;
        }
        .hero-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(
                to right,
                rgba(10, 22, 40, 0.85) 0%,
                rgba(10, 22, 40, 0.5) 35%,
                rgba(10, 22, 40, 0.2) 60%,
                rgba(10, 22, 40, 0.35) 100%
            );
            z-index: 1;
        }
        .hero-inner {
            position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 80px 24px;
            display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
        }
        .hero-content h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(36px, 5vw, 56px); color: var(--white); line-height: 1.15;
            margin-bottom: 20px; letter-spacing: -0.5px;
        }
        .hero-content h1 span { color: var(--gold); }
        .hero-content .subtitle {
            font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.7;
            margin-bottom: 32px; max-width: 500px; font-weight: 300;
        }
        .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
            text-decoration: none; transition: all 0.2s ease; border: none; cursor: pointer;
        }
        .btn-primary { background: var(--green); color: var(--white); }
        .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }
        .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
        .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

        .hero-trust { display: flex; gap: 32px; margin-top: 40px; }
        .trust-item { display: flex; flex-direction: column; }
        .trust-number { font-family: 'DM Serif Display', serif; font-size: 32px; color: var(--gold); line-height: 1; }
        .trust-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; margin-top: 4px; }
        .hero-image { display: flex; justify-content: center; align-items: center; }
        .hero-portrait {
            width: 100%; max-width: 380px;
            border-radius: 24px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
            filter: saturate(1.1) contrast(1.05);
        }

        /* ─── SECTIONS ─── */
        section { padding: 80px 24px; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
        .section-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 40px); color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
        .section-desc { font-size: 16px; color: var(--text-light); max-width: 600px; line-height: 1.7; }

        /* ─── WELCOME ─── */
        .welcome { background: var(--off-white); }
        .welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
        .welcome-text p { font-size: 15px; color: var(--text); margin-bottom: 16px; line-height: 1.8; }
        .welcome-text p:first-of-type::first-letter { font-family: 'DM Serif Display', serif; font-size: 48px; float: left; line-height: 1; margin-right: 8px; color: var(--green); }
        /* Carousel */
        .welcome-carousel { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
        .carousel-track { display: flex; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
        .carousel-track img { width: 100%; height: 100%; object-fit: cover; flex-shrink: 0; aspect-ratio: 16/10; }
        .carousel-btn {
            position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
            width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
            background: rgba(255,255,255,0.85); color: var(--dark);
            font-size: 18px; display: flex; align-items: center; justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15); transition: all 0.2s;
            opacity: 0; backdrop-filter: blur(4px);
        }
        .welcome-carousel:hover .carousel-btn { opacity: 1; }
        .carousel-btn:hover { background: var(--white); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
        .carousel-btn.prev { left: 12px; }
        .carousel-btn.next { right: 12px; }
        .carousel-dots {
            position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%); z-index: 3;
            display: flex; gap: 8px;
        }
        .carousel-dot {
            width: 8px; height: 8px; border-radius: 50%; border: none; cursor: pointer;
            background: rgba(255,255,255,0.5); transition: all 0.3s; padding: 0;
        }
        .carousel-dot.active { background: var(--white); transform: scale(1.25); }
        .carousel-progress {
            position: absolute; bottom: 0; left: 0; height: 3px; z-index: 3;
            background: var(--green); transition: width 0.3s linear; width: 0%;
        }

        /* ─── SERVICES ─── */
        .services { background: var(--white); }
        .services-header { text-align: center; margin-bottom: 48px; }
        .services-header .section-desc { margin: 0 auto; }
        .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .service-card {
            background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
            padding: 32px 28px; transition: all 0.25s ease; text-decoration: none; color: inherit; display: block;
        }
        .service-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
        .service-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
        .service-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--dark); margin-bottom: 10px; }
        .service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
        .service-card .card-link { display: inline-flex; align-items: center; gap: 4px; color: var(--green); font-size: 13px; font-weight: 600; margin-top: 16px; transition: gap 0.2s; }
        .service-card:hover .card-link { gap: 8px; }

        /* ─── BOOK ─── */
        .book-feature { background: linear-gradient(135deg, var(--dark) 0%, #0D1F0D 100%); position: relative; overflow: hidden; }
        .book-feature::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(76,175,80,0.08) 0%, transparent 70%); }
        .book-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
        .book-visual { display: flex; justify-content: center; position: relative; }
        .book-cover { width: 320px; max-width: 100%; border-radius: 0; box-shadow: none; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6)); transition: transform 0.4s ease; }
        .book-cover:hover { transform: scale(1.03); }
        .book-content .section-label { color: var(--gold); }
        .book-content .section-title { color: var(--white); }
        .book-content p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
        .book-formats { display: flex; gap: 16px; margin-top: 28px; }
        .format-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 16px 24px; text-align: center; flex: 1; }
        .format-card .price { font-family: 'DM Serif Display', serif; font-size: 28px; color: var(--gold); line-height: 1; }
        .format-card .type { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

        /* ─── TESTIMONIALS ─── */
        .testimonials { background: var(--off-white); }
        .testimonials-header { text-align: center; margin-bottom: 48px; }
        .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .testimonial-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); display: flex; flex-direction: column; }
        .testimonial-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
        .testimonial-card blockquote { font-size: 14px; color: var(--text); line-height: 1.7; font-style: italic; flex: 1; margin-bottom: 20px; }
        .testimonial-card cite { font-size: 13px; font-weight: 600; color: var(--dark); font-style: normal; border-top: 1px solid var(--border); padding-top: 16px; }

        /* ─── CTA BAND ─── */
        .cta-band { background: var(--green); text-align: center; padding: 60px 24px; }
        .cta-band h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3vw, 36px); color: var(--white); margin-bottom: 12px; }
        .cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; }
        .cta-band .btn { background: var(--white); color: var(--green); }
        .cta-band .btn:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

        /* ─── FOOTER ─── */
        footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 24px 24px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand .logo-mark { width: 48px; height: 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 16px; }
        .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
        .footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .footer-col ul li a:hover { color: var(--green); }
        .footer-hours p { font-size: 13px; line-height: 1.8; }
        .footer-hours strong { color: rgba(255,255,255,0.8); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .hero-inner { grid-template-columns: 1fr; text-align: center; }
            .hero-content .subtitle { margin: 0 auto 32px; }
            .hero-ctas { justify-content: center; }
            .hero-trust { justify-content: center; }
            .hero-image { margin-top: 40px; }
            .welcome-grid { grid-template-columns: 1fr; }
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .book-grid { grid-template-columns: 1fr; text-align: center; }
            .book-visual { margin-bottom: 20px; }
            .book-formats { justify-content: center; }
            .testimonials-grid { grid-template-columns: 1fr 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .header-inner { height: 64px; }
            nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 4px; }
            nav.open { display: flex; }
            nav a { padding: 12px 16px; width: 100%; }
            .nav-toggle { display: block; }
            .hero { min-height: auto; }
            .hero-inner { padding: 60px 24px; }
            .hero-portrait { max-width: 320px; }
            .hero-trust { gap: 24px; }
            section { padding: 60px 24px; }
            .services-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .book-formats { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }
        @media (max-width: 480px) {
            .hero-content h1 { font-size: 32px; }
            .hero-ctas { flex-direction: column; }
            .btn { width: 100%; justify-content: center; }
            .trust-number { font-size: 26px; }
        }

/* ============================================================
   ABOUT page styles — extracted from about.html
   ============================================================ */
        :root {
            --green: #4CAF50;
            --green-dark: #388E3C;
            --green-light: #E8F5E9;
            --green-muted: #2E7D32;
            --gold: #C9A96E;
            --gold-light: #F5EFE0;
            --dark: #1B2E1B;
            --text: #4A4A4A;
            --text-light: #777777;
            --white: #FFFFFF;
            --off-white: #FAFBFA;
            --border: #E8ECE8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        /* ─── HEADER ─── */
        header {
            position: fixed; top: 0; width: 100%;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s ease;
        }
        header.scrolled { box-shadow: var(--shadow-md); }

        .header-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; justify-content: space-between; align-items: center; height: 72px;
        }

        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

        .logo-mark {
            width: 54px; height: 42px; background: var(--green); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-family: 'DM Serif Display', serif;
            font-size: 15px; font-weight: 700; line-height: 1; flex-shrink: 0; letter-spacing: 1.5px;
        }

        .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
        .logo-text .name { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--dark); letter-spacing: -0.3px; }
        .logo-text .tagline { font-size: 10.5px; color: var(--green-muted); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }

        nav { display: flex; gap: 8px; align-items: center; }
        nav a {
            font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none;
            padding: 8px 14px; border-radius: 8px; transition: all 0.2s ease;
        }
        nav a:hover { color: var(--green); background: var(--green-light); }
        nav a.active { color: var(--white); background: var(--green); }
        .nav-cta { background: var(--green)!important; color: var(--white)!important; font-weight: 600!important; padding: 10px 20px!important; border-radius: 10px!important; margin-left: 8px; }
        .nav-cta:hover { background: var(--green-dark)!important; }

        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 6px 0; transition: 0.3s; border-radius: 2px; }

        /* ─── PAGE HEADER ─── */
        .page-header {
            margin-top: 72px; position: relative; min-height: 300px;
            display: flex; align-items: center; overflow: hidden;
            background: #0a1628;
        }
        .page-header-bg {
            position: absolute; inset: 0; overflow: hidden;
        }
        .page-header-bg svg {
            position: absolute; inset: 0; width: 100%; height: 100%;
        }
        .page-header-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.45) 50%, rgba(10,22,40,0.3) 100%);
            z-index: 1;
        }
        .page-header-inner {
            position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; padding: 60px 24px;
            width: 100%;
        }
        .page-header h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(32px, 4vw, 48px); color: var(--white); line-height: 1.15;
            letter-spacing: -0.5px;
        }

        /* ─── SECTIONS ─── */
        section { padding: 80px 24px; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
        .section-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 40px); color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
        .section-desc { font-size: 16px; color: var(--text-light); max-width: 600px; line-height: 1.7; }

        /* ─── BIO INTRO ─── */
        .bio-intro { background: var(--off-white); }
        .bio-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
        .bio-portrait-container { display: flex; flex-direction: column; gap: 32px; }
        .bio-portrait { width: 100%; max-width: 340px; border-radius: 16px; box-shadow: var(--shadow-lg); object-fit: cover; }
        .pma-badge { width: 100%; max-width: 340px; border-radius: var(--radius); box-shadow: var(--shadow-md); object-fit: cover; }
        .bio-content p { font-size: 15px; color: var(--text); margin-bottom: 16px; line-height: 1.8; }
        .bio-content p:first-of-type::first-letter { font-family: 'DM Serif Display', serif; font-size: 48px; float: left; line-height: 1; margin-right: 8px; color: var(--green); }

        /* ─── TIMELINE ─── */
        .timeline-section { background: var(--white); }
        .timeline { max-width: 800px; margin: 0 auto; }
        .timeline-item {
            display: grid; grid-template-columns: 120px 1fr; gap: 32px; margin-bottom: 32px; position: relative; padding-bottom: 24px;
        }
        .timeline-item::before {
            content: ''; position: absolute; left: 59px; top: 30px; width: 3px; height: calc(100% + 24px);
            background: var(--green); z-index: 0;
        }
        .timeline-item:last-child::before { display: none; }
        .timeline-year {
            font-family: 'DM Serif Display', serif; font-size: 24px; font-weight: 600;
            color: var(--gold); position: relative; z-index: 1; padding-top: 2px;
        }
        .timeline-content h3 {
            font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--dark);
            margin-bottom: 8px; font-weight: 600;
        }
        .timeline-content p {
            font-size: 14px; color: var(--text); line-height: 1.6;
        }

        /* ─── SPECIALTIES ─── */
        .specialties { background: var(--off-white); }
        .specialties-content p { font-size: 15px; color: var(--text); margin-bottom: 16px; line-height: 1.8; max-width: 900px; }

        /* ─── CTA BAND ─── */
        .cta-band { background: var(--green); text-align: center; padding: 60px 24px; }
        .cta-band h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3vw, 36px); color: var(--white); margin-bottom: 12px; }
        .cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; }
        .cta-band .btn { background: var(--white); color: var(--green); }
        .cta-band .btn:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
            text-decoration: none; transition: all 0.2s ease; border: none; cursor: pointer;
        }
        .btn-primary { background: var(--green); color: var(--white); }
        .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

        /* ─── FOOTER ─── */
        footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 24px 24px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand .logo-mark { width: 48px; height: 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 16px; }
        .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
        .footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .footer-col ul li a:hover { color: var(--green); }
        .footer-hours p { font-size: 13px; line-height: 1.8; }
        .footer-hours strong { color: rgba(255,255,255,0.8); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .bio-grid { grid-template-columns: 1fr; }
            .bio-portrait-container { flex-direction: column; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 768px) {
            .header-inner { height: 64px; }
            nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 4px; }
            nav.open { display: flex; }
            nav a { padding: 12px 16px; width: 100%; }
            .nav-toggle { display: block; }
            .page-header { min-height: 250px; }
            .page-header-inner { padding: 40px 24px; }
            .page-header h1 { font-size: 32px; }
            section { padding: 60px 24px; }
            .timeline-item { grid-template-columns: 100px 1fr; gap: 24px; }
            .timeline-item::before { left: 49px; }
            .timeline-year { font-size: 20px; }
            .timeline-content h3 { font-size: 16px; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
        }
        @media (max-width: 480px) {
            .page-header h1 { font-size: 28px; }
            .section-title { font-size: 24px; }
            .btn { width: 100%; justify-content: center; }
            .timeline-item { grid-template-columns: 80px 1fr; gap: 16px; }
            .timeline-item::before { left: 39px; }
            .timeline-year { font-size: 18px; }
            .timeline-content h3 { font-size: 15px; }
            .timeline-content p { font-size: 13px; }
        }

/* ============================================================
   CHIROPRACTIC page styles — extracted from chiropractic.html
   ============================================================ */
        :root {
            --green: #4CAF50;
            --green-dark: #388E3C;
            --green-light: #E8F5E9;
            --green-muted: #2E7D32;
            --gold: #C9A96E;
            --gold-light: #F5EFE0;
            --dark: #1B2E1B;
            --text: #4A4A4A;
            --text-light: #777777;
            --white: #FFFFFF;
            --off-white: #FAFBFA;
            --border: #E8ECE8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text);
            line-height: 1.7;
            background: var(--white);
            -webkit-font-smoothing: antialiased;
        }

        /* ─── HEADER ─── */
        header {
            position: fixed; top: 0; width: 100%;
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            z-index: 1000;
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s ease;
        }
        header.scrolled { box-shadow: var(--shadow-md); }

        .header-inner {
            max-width: 1200px; margin: 0 auto; padding: 0 24px;
            display: flex; justify-content: space-between; align-items: center; height: 72px;
        }

        .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

        .logo-mark {
            width: 54px; height: 42px; background: var(--green); border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            color: white; font-family: 'DM Serif Display', serif;
            font-size: 15px; font-weight: 700; line-height: 1; flex-shrink: 0; letter-spacing: 1.5px;
        }

        .logo-text { display: flex; flex-direction: column; line-height: 1.15; }
        .logo-text .name { font-family: 'DM Serif Display', serif; font-size: 18px; color: var(--dark); letter-spacing: -0.3px; }
        .logo-text .tagline { font-size: 10.5px; color: var(--green-muted); font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; }

        nav { display: flex; gap: 8px; align-items: center; }
        nav a {
            font-size: 13.5px; font-weight: 500; color: var(--text); text-decoration: none;
            padding: 8px 14px; border-radius: 8px; transition: all 0.2s ease;
        }
        nav a:hover { color: var(--green); background: var(--green-light); }
        nav a.active { color: var(--white); background: var(--green); }
        .nav-cta { background: var(--green)!important; color: var(--white)!important; font-weight: 600!important; padding: 10px 20px!important; border-radius: 10px!important; margin-left: 8px; }
        .nav-cta:hover { background: var(--green-dark)!important; }

        .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
        .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 6px 0; transition: 0.3s; border-radius: 2px; }

        /* ─── PAGE HEADER ─── */
        .page-header {
            margin-top: 72px; position: relative; min-height: auto;
            display: flex; align-items: center; padding: 80px 24px;
            background: #0a1628; overflow: hidden;
        }
        .page-header-bg {
            position: absolute; inset: 0; overflow: hidden;
        }
        .page-header-bg svg {
            position: absolute; inset: 0; width: 100%; height: 100%;
        }
        .page-header-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.45) 50%, rgba(10,22,40,0.3) 100%);
            z-index: 1;
        }
        .page-header > *:not(.page-header-bg) { position: relative; z-index: 2; }
        .page-header-inner { position: relative; z-index: 2;
            max-width: 1200px; margin: 0 auto; width: 100%;
            text-align: center;
        }
        .page-header h1 {
            font-family: 'DM Serif Display', serif;
            font-size: clamp(36px, 4vw, 48px); color: var(--white); line-height: 1.15;
            margin-bottom: 16px; letter-spacing: -0.5px;
        }
        .page-header .subtitle {
            font-size: 18px; color: rgba(255,255,255,0.75); line-height: 1.6;
            font-weight: 300; max-width: 700px; margin: 0 auto;
        }

        /* ─── SECTIONS ─── */
        section { padding: 80px 24px; }
        .section-inner { max-width: 1200px; margin: 0 auto; }
        .section-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
        .section-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.5vw, 40px); color: var(--dark); line-height: 1.2; margin-bottom: 16px; }
        .section-desc { font-size: 16px; color: var(--text-light); max-width: 600px; line-height: 1.7; }

        /* ─── INTRO SECTION ─── */
        .chiro-intro { background: var(--off-white); }
        .intro-content p { font-size: 15px; color: var(--text); margin-bottom: 16px; line-height: 1.8; }

        /* ─── SPECIALTIES GRID ─── */
        .specialties { background: var(--white); }
        .specialties-header { text-align: center; margin-bottom: 48px; }
        .specialties-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .specialty-card {
            background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
            padding: 32px 28px; transition: all 0.25s ease; text-decoration: none; color: inherit; display: block; cursor: pointer;
        }
        .specialty-card:hover { border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
        .specialty-icon { width: 48px; height: 48px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 20px; }
        .specialty-card h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--dark); margin-bottom: 10px; }
        .specialty-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

        /* ─── CTA BAND ─── */
        .cta-band { background: var(--green); text-align: center; padding: 60px 24px; }
        .cta-band h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3vw, 36px); color: var(--white); margin-bottom: 12px; }
        .cta-band p { color: rgba(255,255,255,0.85); font-size: 16px; margin-bottom: 28px; }
        .cta-band .btn { background: var(--white); color: var(--green); }
        .cta-band .btn:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

        /* ─── BUTTONS ─── */
        .btn {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 14px 28px; border-radius: 12px; font-size: 15px; font-weight: 600;
            text-decoration: none; transition: all 0.2s ease; border: none; cursor: pointer;
        }
        .btn-primary { background: var(--green); color: var(--white); }
        .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

        /* ─── FOOTER ─── */
        footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 24px 24px; }
        .footer-inner { max-width: 1200px; margin: 0 auto; }
        .footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand .logo-mark { width: 48px; height: 36px; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; margin-bottom: 16px; }
        .footer-brand p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); }
        .footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 14px; transition: color 0.2s; }
        .footer-col ul li a:hover { color: var(--green); }
        .footer-hours p { font-size: 13px; line-height: 1.8; }
        .footer-hours strong { color: rgba(255,255,255,0.8); }
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.3); }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 1024px) {
            .specialties-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .page-header { padding: 60px 24px; }
            .page-header h1 { font-size: 36px; }
        }
        @media (max-width: 768px) {
            .header-inner { height: 64px; }
            nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); gap: 4px; }
            nav.open { display: flex; }
            nav a { padding: 12px 16px; width: 100%; }
            .nav-toggle { display: block; }
            section { padding: 60px 24px; }
            .specialties-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; gap: 32px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
            .page-header { padding: 60px 24px; }
            .page-header h1 { font-size: 32px; }
        }
        @media (max-width: 480px) {
            .page-header h1 { font-size: 28px; }
            .page-header .subtitle { font-size: 16px; }
            .section-title { font-size: 28px; }
            .specialty-card { padding: 24px 20px; }
            .specialty-card h3 { font-size: 18px; }
            .specialty-card p { font-size: 13px; }
            .btn { padding: 12px 24px; font-size: 14px; }
        }

/* ============================================================
   WELLNESS page styles — extracted from wellness.html
   ============================================================ */
        /* CSS Variables */
        :root {
            --green: #4CAF50;
            --green-dark: #388E3C;
            --green-light: #E8F5E9;
            --green-muted: #2E7D32;
            --gold: #C9A96E;
            --gold-light: #F5EFE0;
            --dark: #1B2E1B;
            --text: #4A4A4A;
            --text-light: #777777;
            --white: #FFFFFF;
            --off-white: #FAFBFA;
            --border: #E8ECE8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--off-white);
            line-height: 1.6;
        }

        a {
            color: var(--green);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--green-dark);
        }

        /* Header */
        header#site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 251, 250, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow 0.3s ease;
        }

        header#site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: var(--dark);
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.8;
        }

        .logo-mark {
            width: 54px;
            height: 42px;
            background: var(--green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: 'DM Serif Display', serif;
            font-size: 15px;
            font-weight: 700; letter-spacing: 1.5px; flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text .name {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark);
        }

        .logo-text .tagline {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 400;
        }

        /* Navigation */
        nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            position: relative;
            transition: color 0.3s ease;
        }

        nav a.active,
        nav a:hover {
            color: var(--green);
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--green);
        }

        nav a.nav-cta {
            background: var(--green);
            color: var(--white);
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            transition: background 0.3s ease;
        }

        nav a.nav-cta:hover {
            background: var(--green-dark);
            color: var(--white);
        }

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

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text);
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            margin-top: 80px;
            padding-bottom: 80px;
        }

        /* Page Header Banner */
        .page-header {
            background: #0a1628;
            color: var(--white);
            padding: 80px 24px;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 72px;
        }
        .page-header-bg {
            position: absolute; inset: 0; overflow: hidden;
        }
        .page-header-bg svg {
            position: absolute; inset: 0; width: 100%; height: 100%;
        }
        .page-header-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.45) 50%, rgba(10,22,40,0.3) 100%);
            z-index: 1;
        }
        .page-header > *:not(.page-header-bg) { position: relative; z-index: 2; }

        .page-header h1 {
            font-family: 'DM Serif Display', serif;
            font-size: 48px;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .page-header p {
            font-size: 18px;
            opacity: 0.95;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Section Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Intro Section */
        .intro-section {
            padding: 60px 24px;
            text-align: center;
        }

        .intro-section p {
            max-width: 700px;
            margin: 0 auto;
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
        }

        /* Article Grid */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin: 60px 24px;
        }

        .article-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
        }

        .article-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-8px);
            border-color: var(--green-light);
        }

        .article-icon {
            width: 48px;
            height: 48px;
            background: var(--green-light);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
        }

        .article-card h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 20px;
            color: var(--dark);
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .article-card p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            flex-grow: 1;
            margin-bottom: 16px;
        }

        .article-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--green);
            font-weight: 600;
            font-size: 14px;
            margin-top: auto;
        }

        .article-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .article-card:hover .article-link::after {
            transform: translateX(4px);
        }

        /* CTA Band */
        .cta-band {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            color: var(--white);
            padding: 60px 24px;
            text-align: center;
            margin: 60px 0;
        }

        .cta-band h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 36px;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .cta-band p {
            font-size: 16px;
            margin-bottom: 32px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background: var(--white);
            color: var(--green);
            padding: 14px 40px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background: var(--off-white);
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 60px 24px 40px;
            margin-top: 60px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 16px;
        }

        .footer-col h4 {
            font-family: 'DM Serif Display', serif;
            font-size: 16px;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 12px;
        }

        .footer-col a {
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--green);
        }

        .footer-hours p {
            font-size: 13px;
            margin-bottom: 8px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .articles-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }

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

            .page-header h1 {
                font-size: 40px;
            }

            .cta-band h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                gap: 12px;
                background: var(--white);
                border-bottom: 1px solid var(--border);
                padding: 20px 24px;
            }

            nav.open {
                display: flex;
            }

            nav a {
                padding: 8px 0;
            }

            nav a.active::after {
                display: none;
            }

            nav a.active {
                color: var(--green);
                font-weight: 600;
            }

            .articles-grid {
                grid-template-columns: 1fr;
                gap: 24px;
                margin: 40px 24px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .page-header {
                padding: 60px 24px;
            }

            .page-header h1 {
                font-size: 32px;
            }

            .page-header p {
                font-size: 16px;
            }

            .cta-band {
                padding: 40px 24px;
            }

            .cta-band h2 {
                font-size: 24px;
            }

            .cta-band p {
                font-size: 14px;
                margin-bottom: 24px;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 12px 16px;
            }

            .logo-mark {
                width: 36px;
                height: 36px;
                font-size: 20px;
            }

            .logo-text .name {
                font-size: 12px;
            }

            .logo-text .tagline {
                font-size: 10px;
            }

            main {
                margin-top: 70px;
            }

            .page-header h1 {
                font-size: 24px;
            }

            .page-header p {
                font-size: 14px;
            }

            .intro-section {
                padding: 40px 16px;
            }

            .intro-section p {
                font-size: 14px;
            }

            .article-card {
                padding: 24px;
            }

            .article-card h3 {
                font-size: 18px;
            }

            .article-card p {
                font-size: 13px;
            }

            .cta-band h2 {
                font-size: 20px;
            }

            .cta-band p {
                font-size: 13px;
            }

            .footer-grid {
                gap: 24px;
            }

            .footer-col h4 {
                font-size: 14px;
            }

            .footer-col a,
            .footer-col li {
                font-size: 13px;
            }
        }

/* ============================================================
   NEWSLETTER page styles — extracted from newsletter.html
   ============================================================ */
        :root {
            --green: #4CAF50;
            --green-dark: #388E3C;
            --green-light: #E8F5E9;
            --green-muted: #2E7D32;
            --gold: #C9A96E;
            --gold-light: #F5EFE0;
            --dark: #1B2E1B;
            --text: #4A4A4A;
            --text-light: #777777;
            --white: #FFFFFF;
            --off-white: #FAFBFA;
            --border: #E8ECE8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--text);
            background-color: var(--off-white);
            line-height: 1.6;
        }

        /* HEADER & NAV */
        header#site-header {
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        header#site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            text-decoration: none;
            color: var(--dark);
            transition: opacity 0.2s ease;
        }

        .logo:hover {
            opacity: 0.85;
        }

        .logo-mark {
            width: 54px;
            height: 42px;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            color: var(--white);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 15px; letter-spacing: 1.5px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 0.125rem;
        }

        .logo-text .name {
            font-family: 'DM Serif Display', serif;
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
        }

        .logo-text .tagline {
            font-size: 0.75rem;
            color: var(--text-light);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

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

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text);
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
            margin-left: auto;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--green);
        }

        nav a.active {
            color: var(--green);
            font-weight: 600;
        }

        nav a.active::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--green);
            border-radius: 1px;
        }

        nav a.nav-cta {
            background: var(--green);
            color: var(--white);
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-sm);
            font-weight: 600;
            transition: background 0.2s ease;
        }

        nav a.nav-cta:hover {
            background: var(--green-dark);
            color: var(--white);
        }

        /* PAGE HEADER */
        .page-header {
            background: #0a1628;
            color: var(--white);
            padding: 4rem 1.5rem;
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
            overflow: hidden;
            margin-top: 72px;
        }
        .page-header-bg {
            position: absolute; inset: 0; overflow: hidden;
        }
        .page-header-bg svg {
            position: absolute; inset: 0; width: 100%; height: 100%;
        }
        .page-header-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.45) 50%, rgba(10,22,40,0.3) 100%);
            z-index: 1;
        }
        .page-header > *:not(.page-header-bg) { position: relative; z-index: 2; }

        .page-header h1 {
            font-family: 'DM Serif Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -1px;
        }

        .page-header .subtitle {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
        }

        /* MAIN CONTENT */
        main {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 1.5rem 3rem;
        }

        /* ARTICLE CARDS */
        .article-card {
            background: var(--white);
            border-radius: var(--radius);
            padding: 2rem;
            margin-bottom: 2rem;
            border-top: 4px solid var(--green);
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .article-card .meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 1rem;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .article-card .date {
            font-size: 0.875rem;
            color: var(--gold);
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .article-card h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.75rem;
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }

        .article-card p {
            color: var(--text);
            line-height: 1.8;
            font-size: 1rem;
            margin-bottom: 1.25rem;
        }

        .article-card a {
            color: var(--green);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .article-card a:hover {
            color: var(--green-dark);
            text-decoration: underline;
        }

        /* CTA BAND */
        .cta-band {
            background: linear-gradient(135deg, var(--green-light), var(--gold-light));
            padding: 3rem 1.5rem;
            text-align: center;
            margin: 3rem 0;
            border-radius: var(--radius);
            border-left: 4px solid var(--green);
        }

        .cta-band h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.5rem;
            color: var(--dark);
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .cta-band p {
            color: var(--text);
            margin-bottom: 1.5rem;
            font-size: 1rem;
        }

        .cta-button {
            display: inline-block;
            background: var(--green);
            color: var(--white);
            padding: 0.875rem 2rem;
            border-radius: var(--radius-sm);
            text-decoration: none;
            font-weight: 600;
            transition: background 0.2s ease, transform 0.2s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }

        .cta-button:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 1.5rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.125rem;
            margin-bottom: 1rem;
            font-weight: 700;
            color: var(--green);
        }

        .footer-section p {
            font-size: 0.9rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        .footer-section a {
            color: var(--green);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-section a:hover {
            color: var(--gold);
        }

        .footer-brand {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .footer-logo-mark {
            width: 52px;
            height: 40px;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px;
            font-weight: 700;
            color: var(--white);
            flex-shrink: 0;
        }

        .footer-brand-text {
            display: flex;
            flex-direction: column;
        }

        .footer-brand-text .brand-name {
            font-family: 'DM Serif Display', serif;
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .footer-brand-text .brand-desc {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .page-header h1 {
                font-size: 2.25rem;
            }

            nav {
                gap: 1.5rem;
            }

            nav a {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            nav {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                box-shadow: var(--shadow-md);
                border-radius: 0 0 var(--radius) var(--radius);
                padding: 0;
                margin-left: 0;
            }

            nav.open {
                max-height: 400px;
                padding: 1rem 0;
            }

            nav a {
                display: block;
                padding: 0.75rem 1.5rem;
                border: none;
            }

            nav a.active::after {
                display: none;
            }

            nav a.nav-cta {
                margin: 0.5rem 1rem;
                width: calc(100% - 2rem);
                text-align: center;
            }

            .page-header {
                padding: 3rem 1.5rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .page-header .subtitle {
                font-size: 1rem;
            }

            .article-card {
                padding: 1.5rem;
            }

            .article-card h2 {
                font-size: 1.5rem;
            }

            .cta-band {
                padding: 2rem 1.5rem;
            }

            .cta-band h3 {
                font-size: 1.25rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 1rem;
            }

            .page-header h1 {
                font-size: 1.5rem;
            }

            .page-header .subtitle {
                font-size: 0.95rem;
            }

            main {
                padding: 0 1rem 2rem;
            }

            .article-card {
                padding: 1.25rem;
                margin-bottom: 1.5rem;
            }

            .article-card h2 {
                font-size: 1.25rem;
            }

            .article-card p {
                font-size: 0.95rem;
            }

            .cta-band {
                padding: 1.5rem 1rem;
                margin: 2rem 0;
            }

            .cta-band h3 {
                font-size: 1.125rem;
            }

            footer {
                padding: 2rem 1rem 1rem;
            }

            .footer-content {
                gap: 1.5rem;
            }

            .footer-bottom {
                font-size: 0.75rem;
            }
        }

/* ============================================================
   TESTIMONIALS page styles — extracted from testimonials.html
   ============================================================ */
        /* CSS Variables */
        :root {
            --green: #4CAF50;
            --green-dark: #388E3C;
            --green-light: #E8F5E9;
            --green-muted: #2E7D32;
            --gold: #C9A96E;
            --gold-light: #F5EFE0;
            --dark: #1B2E1B;
            --text: #4A4A4A;
            --text-light: #777777;
            --white: #FFFFFF;
            --off-white: #FAFBFA;
            --border: #E8ECE8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

        /* Global Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--off-white);
            line-height: 1.6;
        }

        a {
            color: var(--green);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: var(--green-dark);
        }

        /* Header Styles */
        #site-header {
            background-color: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        #site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            color: var(--dark);
            font-weight: 600;
        }

        .logo-mark {
            width: 54px;
            height: 42px;
            background: linear-gradient(135deg, var(--green-muted) 0%, var(--green) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-family: 'DM Serif Display', serif;
            font-size: 15px;
            font-weight: 700; letter-spacing: 1.5px; flex-shrink: 0;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .logo-text .name {
            font-family: 'DM Serif Display', serif;
            font-size: 18px;
            font-weight: 500;
            color: var(--dark);
        }

        .logo-text .tagline {
            font-size: 11px;
            color: var(--text-light);
            font-weight: 400;
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--green);
        }

        nav a.active {
            color: var(--green);
            border-bottom: 2px solid var(--green);
            padding-bottom: 2px;
        }

        nav .nav-cta {
            background-color: var(--green);
            color: var(--white);
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            transition: background-color 0.3s ease;
        }

        nav .nav-cta:hover {
            background-color: var(--green-dark);
            color: var(--white);
        }

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

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background-color: var(--text);
            transition: all 0.3s ease;
        }

        /* Page Header Banner */
        .page-header {
            background: #0a1628;
            color: var(--white);
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-top: 72px;
        }
        .page-header-bg {
            position: absolute; inset: 0; overflow: hidden;
        }
        .page-header-bg svg {
            position: absolute; inset: 0; width: 100%; height: 100%;
        }
        .page-header-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.45) 50%, rgba(10,22,40,0.3) 100%);
            z-index: 1;
        }
        .page-header > *:not(.page-header-bg) { position: relative; z-index: 2; }

        .page-header h1 {
            font-family: 'DM Serif Display', serif;
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
        }

        .page-header p {
            font-size: 1.25rem;
            font-weight: 300;
            opacity: 0.95;
        }

        /* Main Content */
        main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 2rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .testimonial-card {
            background-color: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .star-rating {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .star-rating svg {
            width: 18px;
            height: 18px;
            fill: var(--gold);
        }

        .testimonial-quote {
            font-style: italic;
            color: var(--text);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .testimonial-author-sep {
            border-top: 1px solid var(--border);
            padding-top: 1.25rem;
            margin-top: 1.5rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--green);
            font-size: 0.95rem;
        }

        .testimonial-title {
            font-size: 0.85rem;
            color: var(--text-light);
            font-weight: 400;
            margin-top: 0.25rem;
        }

        /* CTA Band */
        .cta-band {
            background: linear-gradient(135deg, var(--green-muted) 0%, var(--green) 100%);
            color: var(--white);
            padding: 4rem 2rem;
            text-align: center;
            margin: 4rem 0 0 0;
        }

        .cta-band h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .cta-band p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--white);
            color: var(--green-dark);
            padding: 14px 40px;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 2rem;
            margin-top: 4rem;
        }

        .footer-inner {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-col h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-logo-mark {
            width: 52px;
            height: 40px;
            background: linear-gradient(135deg, var(--green) 0%, var(--gold) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px;
            font-weight: bold;
            color: var(--white);
        }

        .footer-logo-text {
            font-family: 'DM Serif Display', serif;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .footer-desc {
            font-size: 0.9rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-top: 0.5rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.75rem;
        }

        .footer-col ul a {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-col ul a:hover {
            color: var(--gold);
        }

        .contact-info {
            font-size: 0.9rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.85);
        }

        .contact-info p {
            margin-bottom: 0.5rem;
        }

        .office-hours {
            font-size: 0.85rem;
        }

        .office-hours p {
            margin-bottom: 0.4rem;
            line-height: 1.6;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .header-inner {
                padding: 0 1.5rem;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            main {
                padding: 3rem 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                flex-direction: column;
                background-color: var(--white);
                padding: 1.5rem;
                gap: 1rem;
                border-bottom: 1px solid var(--border);
                box-shadow: var(--shadow-md);
            }

            nav.open {
                display: flex;
            }

            nav a {
                display: block;
                padding: 0.75rem 0;
            }

            nav .nav-cta {
                width: 100%;
                text-align: center;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .page-header {
                padding: 3rem 1.5rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .page-header p {
                font-size: 1rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            main {
                padding: 2rem 1.5rem;
            }

            .cta-band {
                padding: 2.5rem 1.5rem;
            }

            .cta-band h2 {
                font-size: 1.8rem;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                height: 70px;
                padding: 0 1rem;
            }

            .logo {
                gap: 0.75rem;
            }

            .logo-mark {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }

            .logo-text .name {
                font-size: 15px;
            }

            .logo-text .tagline {
                font-size: 10px;
            }

            .page-header {
                padding: 2rem 1rem;
            }

            .page-header h1 {
                font-size: 1.75rem;
            }

            .page-header p {
                font-size: 0.9rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonial-quote {
                font-size: 0.95rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            main {
                padding: 1.5rem 1rem;
            }

            .cta-band {
                padding: 2rem 1rem;
            }

            .cta-band h2 {
                font-size: 1.4rem;
            }

            .cta-band p {
                font-size: 0.95rem;
            }
        }

/* ============================================================
   CONTACT page styles — extracted from contact.html
   Note: contact.html uses a slightly different footer class system;
   the canonical footer in this theme uses the pattern from index/about.
   ============================================================ */
        :root {
            --green: #4CAF50;
            --green-dark: #388E3C;
            --green-light: #E8F5E9;
            --green-muted: #2E7D32;
            --gold: #C9A96E;
            --gold-light: #F5EFE0;
            --dark: #1B2E1B;
            --text: #4A4A4A;
            --text-light: #777777;
            --white: #FFFFFF;
            --off-white: #FAFBFA;
            --border: #E8ECE8;
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
            --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
            --radius: 12px;
            --radius-sm: 8px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text);
            background-color: var(--off-white);
            line-height: 1.6;
        }

        /* Header */
        #site-header {
            background-color: var(--white);
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: box-shadow 0.3s ease;
        }

        #site-header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            color: var(--dark);
        }

        .logo-mark {
            width: 54px;
            height: 42px;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 15px; letter-spacing: 1.5px;
            font-weight: 700;
            border-radius: var(--radius-sm);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 0.125rem;
        }

        .logo-text .name {
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }

        .logo-text .tagline {
            font-size: 0.75rem;
            color: var(--text-light);
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            flex-direction: column;
            gap: 0.375rem;
        }

        .nav-toggle span {
            width: 24px;
            height: 2px;
            background-color: var(--dark);
            transition: all 0.3s ease;
            display: block;
        }

        .nav-toggle.open span:nth-child(1) {
            transform: rotate(45deg) translateY(10px);
        }

        .nav-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.open span:nth-child(3) {
            transform: rotate(-45deg) translateY(-10px);
        }

        nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--green);
        }

        nav a.nav-cta {
            background: var(--green);
            color: var(--white);
            padding: 0.5rem 1.25rem;
            border-radius: var(--radius-sm);
            transition: background-color 0.3s ease;
        }

        nav a.nav-cta:hover {
            background-color: var(--green-dark);
        }

        /* Page Header */
        .page-header {
            background: #0a1628;
            color: var(--white);
            padding: 6rem 2rem;
            text-align: center;
            margin-bottom: 4rem;
            position: relative;
            overflow: hidden;
            margin-top: 72px;
        }
        .page-header-bg {
            position: absolute; inset: 0; overflow: hidden;
        }
        .page-header-bg svg {
            position: absolute; inset: 0; width: 100%; height: 100%;
        }
        .page-header-bg::after {
            content: ''; position: absolute; inset: 0;
            background: linear-gradient(to right, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.45) 50%, rgba(10,22,40,0.3) 100%);
            z-index: 1;
        }
        .page-header > *:not(.page-header-bg) { position: relative; z-index: 2; }

        .page-header h1 {
            font-family: 'DM Serif Display', serif;
            font-size: 3rem;
            margin-bottom: 0.5rem;
            font-weight: 400;
            letter-spacing: -1px;
        }

        .page-header p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
        }

        /* Contact Info Cards */
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .info-card {
            background: var(--white);
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border-left: 4px solid var(--green);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .info-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .info-card-icon {
            width: 48px;
            height: 48px;
            background: var(--green-light);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1rem;
            color: var(--green);
            font-size: 1.5rem;
        }

        .info-card h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--dark);
            font-weight: 400;
        }

        .info-card p {
            color: var(--text-light);
            margin: 0.25rem 0;
            font-size: 0.95rem;
        }

        .info-card a {
            color: var(--green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .info-card a:hover {
            color: var(--green-dark);
        }

        /* Hours */
        .hours-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 0.75rem;
        }

        .hours-item {
            display: flex;
            justify-content: space-between;
            font-size: 0.9rem;
        }

        .hours-item .day {
            font-weight: 500;
            color: var(--text);
        }

        .hours-item .time {
            color: var(--text-light);
        }

        .hours-item.closed .time {
            color: #d32f2f;
            font-weight: 500;
        }

        /* Contact Form */
        .contact-form {
            background: var(--white);
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        .contact-form h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.75rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text);
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: var(--text);
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
        }

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

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

        .submit-btn {
            background: var(--green);
            color: var(--white);
            padding: 0.875rem 2rem;
            border: none;
            border-radius: var(--radius-sm);
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.2s ease;
            width: 100%;
        }

        .submit-btn:hover {
            background-color: var(--green-dark);
            transform: translateY(-1px);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Maps Section */
        .maps-section {
            margin: 4rem 0;
        }

        .maps-section h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 1.75rem;
            margin-bottom: 2rem;
            color: var(--dark);
            font-weight: 400;
        }

        .maps-placeholder {
            width: 100%;
            height: 400px;
            background: #f0f0f0;
            border-radius: var(--radius);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 1rem;
            border: 1px solid var(--border);
        }

        /* CTA Band */
        .cta-band {
            background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
            margin: 4rem 0;
            border-radius: var(--radius);
        }

        .cta-band h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .cta-band p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        .cta-phone {
            font-family: 'DM Serif Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            letter-spacing: -1px;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: var(--white);
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 2rem;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 2rem;
        }

        .footer-brand {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .footer-logo-mark {
            width: 52px;
            height: 40px;
            background: linear-gradient(135deg, var(--green), var(--green-dark));
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'DM Serif Display', serif;
            font-size: 0.85rem; font-weight: 700; letter-spacing: 1.5px;
            flex-shrink: 0;
        }

        .footer-brand-text {
            display: flex;
            flex-direction: column;
        }

        .footer-brand-text .name {
            font-weight: 600;
            font-size: 0.95rem;
        }

        .footer-brand-text .tagline {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.6;
            margin-top: 0.5rem;
        }

        .footer-col h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 1rem;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 0.5rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-col ul li a:hover {
            color: var(--green);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .page-header h1 {
                font-size: 2.5rem;
            }

            .contact-container {
                gap: 2.5rem;
            }

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

        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            nav {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                flex-direction: column;
                background: var(--white);
                border-bottom: 1px solid var(--border);
                padding: 1.5rem;
                gap: 1rem;
                box-shadow: var(--shadow-md);
            }

            nav.open {
                display: flex;
            }

            nav a {
                width: 100%;
                padding: 0.75rem 0;
                border-bottom: 1px solid var(--border);
            }

            nav a.nav-cta {
                width: 100%;
                text-align: center;
                border-bottom: none;
            }

            .page-header {
                padding: 4rem 1.5rem;
                margin-bottom: 2.5rem;
            }

            .page-header h1 {
                font-size: 2rem;
            }

            .page-header p {
                font-size: 1rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .maps-placeholder {
                height: 300px;
            }

            .cta-band {
                padding: 2rem 1.5rem;
            }

            .cta-band h2 {
                font-size: 1.5rem;
            }

            .cta-phone {
                font-size: 2rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .header-inner {
                padding: 1rem 1.5rem;
            }

            .logo {
                gap: 0.75rem;
            }

            .logo-mark {
                width: 36px;
                height: 36px;
                font-size: 1.25rem;
            }

            .logo-text .name {
                font-size: 0.85rem;
            }

            .logo-text .tagline {
                font-size: 0.65rem;
            }

            .container {
                padding: 0 1.5rem;
            }

            .page-header {
                padding: 3rem 1.5rem;
                margin-bottom: 2rem;
            }

            .page-header h1 {
                font-size: 1.5rem;
            }

            .page-header p {
                font-size: 0.95rem;
            }

            .contact-container {
                gap: 1.5rem;
                margin-bottom: 3rem;
            }

            .contact-form {
                padding: 1.75rem;
            }

            .contact-form h2 {
                font-size: 1.35rem;
                margin-bottom: 1rem;
            }

            .info-card {
                padding: 1.5rem;
            }

            .hours-list {
                grid-template-columns: 1fr;
                gap: 0.5rem;
            }

            .maps-section {
                margin: 2.5rem 0;
            }

            .maps-section h2 {
                font-size: 1.35rem;
                margin-bottom: 1.5rem;
            }

            .maps-placeholder {
                height: 250px;
            }

            .cta-band {
                padding: 2rem 1.5rem;
                margin: 2.5rem 0;
            }

            .cta-band h2 {
                font-size: 1.35rem;
                margin-bottom: 0.75rem;
            }

            .cta-band p {
                font-size: 1rem;
                margin-bottom: 1rem;
            }

            .cta-phone {
                font-size: 1.75rem;
            }

            footer {
                padding: 2rem 1.5rem 1rem;
            }

            .footer-bottom {
                font-size: 0.75rem;
            }
        }

/* ============================================================
   WORDPRESS-SPECIFIC OVERRIDES
   ============================================================ */

/* Map WordPress .current-menu-item to the existing .active nav style */
nav li.current-menu-item > a,
nav li.current_page_item > a {
    color: var(--white);
    background: var(--green);
}

/* WordPress 'Book Visit' CTA nav item — add CSS class "nav-cta" in menu admin */
nav li.nav-cta > a {
    background: var(--green) !important;
    color: var(--white) !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 10px !important;
    margin-left: 8px;
}
nav li.nav-cta > a:hover {
    background: var(--green-dark) !important;
}

/* Clean up wp_nav_menu() default list styling */
nav ul {
    display: flex;
    gap: 8px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Admin bar compensation — push header down when logged in */
body.admin-bar header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar header {
        top: 46px;
    }
}

/* Gutenberg/block editor core styles */
.alignwide { max-width: 1200px; margin-left: auto; margin-right: auto; }
.alignfull { width: 100vw; margin-left: calc(50% - 50vw); }
.wp-block-image img { max-width: 100%; height: auto; }

/* Screen reader text for accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px; width: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    word-wrap: normal !important;
}
