
        :root {
            --forest: #2a5445;
            --forest-deep: #1e3d32;
            --sage: #6b8f78;
            --sage-light: #a8bfb0;
            --cream: #f6f3ef;
            --cream-mid: #ede9e3;
            --white: #ffffff;
            --gold: #b8965a;
            --gold-light: #d4b07a;
            --charcoal: #252d2a;
            --text-primary: #252d2a;
            --text-secondary: #566060;
            --text-light: #8a9898;
            --border: rgba(42, 84, 69, 0.12);
            
            --font-serif: 'Cormorant Garamond', serif;
            --font-sans: 'DM Sans', sans-serif;
            
            --nav-h: 68px;
            --section-y: 4rem;
            --section-y-sm: 2.75rem;
        }

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

        html { scroll-behavior: smooth; font-size: 16px; }

        body {
            font-family: var(--font-sans);
            color: var(--text-primary);
            background: var(--cream);
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: var(--font-serif);
            font-weight: 500;
            line-height: 1.15;
            color: var(--forest);
        }

        h1 { font-size: clamp(2.1rem, 4vw, 3.5rem); }
        h2 { font-size: clamp(1.8rem, 3.2vw, 2.9rem); }
        h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
        h4 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; }

        p { line-height: 1.72; }

        /* ===== HEADER ===== */
        header {
            position: fixed;
            top: 0; left: 0; right: 0;
            height: var(--nav-h);
            background: rgba(255,255,255,0.97);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: box-shadow 0.3s ease;
        }

        header.scrolled {
            box-shadow: 0 4px 32px rgba(42, 84, 69, 0.09);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .logo {
            font-family: var(--font-serif);
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--forest);
            text-decoration: none;
            letter-spacing: -0.3px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            gap: 2.25rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.92rem;
            letter-spacing: 0.2px;
            transition: color 0.25s ease;
            position: relative;
            padding-bottom: 3px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 0; height: 1.5px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover { color: var(--forest); }
        .nav-links a:hover::after,
        .nav-links a.active::after { width: 100%; }
        .nav-links a.active { color: var(--forest); }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 1.25rem;
            flex-shrink: 0;
        }

        .phone-nav {
            color: var(--forest);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.97rem;
            transition: color 0.25s ease;
        }

        .phone-nav:hover { color: var(--gold); }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 6px;
        }

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

        /* ===== BUTTONS ===== */
        .btn {
            padding: 0.75rem 1.75rem;
            border-radius: 3px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1.5px solid transparent;
            cursor: pointer;
            display: inline-block;
            text-align: center;
            font-family: var(--font-sans);
        }

        .btn-primary {
            background: var(--forest);
            color: white;
            border-color: var(--forest);
        }

        .btn-primary:hover {
            background: var(--forest-deep);
            border-color: var(--forest-deep);
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(42, 84, 69, 0.22);
        }

        .btn-outline {
            background: transparent;
            color: var(--forest);
            border-color: var(--forest);
        }

        .btn-outline:hover {
            background: var(--forest);
            color: white;
            transform: translateY(-1px);
        }

        .btn-gold {
            background: var(--gold);
            color: white;
            border-color: var(--gold);
        }

        .btn-gold:hover {
            background: #9d7d44;
            border-color: #9d7d44;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(184, 150, 90, 0.28);
        }

        .btn-white {
            background: white;
            color: var(--forest);
            border-color: white;
        }

        .btn-white:hover {
            background: var(--cream);
            transform: translateY(-1px);
        }

        .btn-ghost-white {
            background: transparent;
            color: white;
            border-color: rgba(255,255,255,0.6);
        }

        .btn-ghost-white:hover {
            background: rgba(255,255,255,0.12);
            border-color: white;
        }

        .btn-lg {
            padding: 0.95rem 2.25rem;
            font-size: 0.97rem;
        }

        /* ===== PAGE SECTIONS SYSTEM ===== */
        /* ===== SECTION SHARED ===== */
        .section-wrap {
            padding: var(--section-y) 3rem;
        }

        .section-wrap-sm {
            padding: var(--section-y-sm) 3rem;
        }

        .container {
            max-width: 1180px;
            margin: 0 auto;
        }

        .section-label {
            display: inline-block;
            color: var(--gold);
            font-size: 0.78rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            max-width: 720px;
            margin-bottom: 1.1rem;
        }

        .section-sub {
            font-size: 1.05rem;
            color: var(--text-secondary);
            max-width: 620px;
            line-height: 1.75;
        }

        .section-header { margin-bottom: 3rem; }
        .section-header-center { text-align: center; }
        .section-header-center .section-title,
        .section-header-center .section-sub { margin-left: auto; margin-right: auto; }

        .bg-white { background: var(--white); }
        .bg-cream { background: var(--cream); }
        .bg-forest {
            background: linear-gradient(145deg, var(--forest) 0%, var(--forest-deep) 100%);
        }

        .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: white; }
        .bg-forest p { color: rgba(255,255,255,0.88); }
        .bg-forest .section-label { color: var(--gold-light); }
        .bg-forest .section-sub { color: rgba(255,255,255,0.82); }

        /* ===== HERO ===== */
        .hero {
            margin-top: var(--nav-h);
            min-height: calc(100vh - var(--nav-h));
            display: flex;
            align-items: center;
            background: linear-gradient(160deg, #f6f3ef 0%, #ffffff 60%, #f0f5f2 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 0; right: 0;
            width: 45%;
            height: 100%;
            background: radial-gradient(ellipse at 80% 40%, rgba(107, 143, 120, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-grid {
            max-width: 1180px;
            margin: 0 auto;
            padding: 2.5rem 3rem;
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            opacity: 0;
            animation: fadeUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
        }

        @keyframes fadeUp {
            from { opacity: 0; transform: translateY(24px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.6rem;
            color: var(--gold);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 1.1rem;
        }

        .hero-eyebrow::before {
            content: '';
            width: 28px;
            height: 1.5px;
            background: var(--gold);
            flex-shrink: 0;
        }

        .hero h1 {
            margin-bottom: 1.2rem;
            line-height: 1.1;
        }

        .hero-sub {
            font-size: clamp(0.97rem, 1.5vw, 1.1rem);
            color: var(--text-secondary);
            line-height: 1.78;
            margin-bottom: 2rem;
            max-width: 520px;
        }

        .hero-ctas {
            display: flex;
            gap: 0.85rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .trust-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.25rem 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
        }

        .trust-pill {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.87rem;
            font-weight: 500;
            color: var(--text-secondary);
        }

        .trust-pill svg {
            width: 15px;
            height: 15px;
            stroke: var(--sage);
            flex-shrink: 0;
        }

        .hero-visual {
            opacity: 0;
            animation: fadeRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.25s forwards;
        }

        @keyframes fadeRight {
            from { opacity: 0; transform: translateX(24px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .hero-img-frame {
            position: relative;
            border-radius: 6px;
            overflow: hidden;
            box-shadow: 0 24px 64px rgba(42, 84, 69, 0.14);
        }

        .hero-img-frame::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 100%;
            height: 4px;
            background: var(--gold);
            z-index: 2;
        }

        .hero-img-frame img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero-img-placeholder {
            aspect-ratio: 3/4;
            background: linear-gradient(145deg, var(--cream-mid) 0%, var(--cream) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 1rem;
            color: var(--text-light);
            font-size: 0.9rem;
            text-align: center;
            padding: 2rem;
        }

        .cred-float {
            position: absolute;
            bottom: 1.5rem;
            right: -1.25rem;
            background: white;
            padding: 1.1rem 1.5rem;
            border-radius: 5px;
            box-shadow: 0 12px 40px rgba(42, 84, 69, 0.18);
            border-left: 3.5px solid var(--gold);
            z-index: 3;
        }

        .cred-float strong {
            display: block;
            font-size: 0.82rem;
            font-weight: 700;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            color: var(--forest);
            margin-bottom: 0.2rem;
        }

        .cred-float span {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        /* ===== TRUST BAR ===== */
        .trust-bar {
            background: var(--white);
            border-top: 2px solid var(--gold);
            padding: 1.75rem 3rem;
            box-shadow: 0 4px 24px rgba(42, 84, 69, 0.05);
        }

        .trust-bar-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 0.75rem;
        }

        .trust-stat {
            text-align: center;
            padding: 0.75rem;
            opacity: 0;
            transform: translateY(16px);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .trust-stat.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .trust-stat svg {
            width: 30px;
            height: 30px;
            stroke: var(--sage);
            margin-bottom: 0.5rem;
            stroke-width: 1.5;
        }

        .trust-stat strong {
            display: block;
            font-size: 0.87rem;
            font-weight: 700;
            color: var(--forest);
            margin-bottom: 0.15rem;
        }

        .trust-stat p {
            font-size: 0.78rem;
            color: var(--text-light);
        }

        /* ===== SERVICES ===== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .service-card {
            background: var(--white);
            padding: 1.85rem;
            border-radius: 5px;
            box-shadow: 0 2px 14px rgba(42, 84, 69, 0.055);
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 2.5px solid transparent;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 2.5px;
            background: var(--gold);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(42, 84, 69, 0.1);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, rgba(107, 143, 120, 0.12) 0%, rgba(107, 143, 120, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.1rem;
        }

        .service-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--sage);
            stroke-width: 1.75;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 0.75rem;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.72;
            flex-grow: 1;
            margin-bottom: 1.25rem;
        }

        .service-link {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.88rem;
            letter-spacing: 0.3px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            transition: gap 0.25s ease;
            margin-top: auto;
        }

        .service-link:hover { gap: 0.65rem; }

        .service-link svg {
            width: 14px;
            height: 14px;
            stroke: var(--gold);
        }

        /* Optional wide card for 4th service */
        .service-card-wide {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.75rem;
            background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
            padding: 2.1rem;
            border-radius: 5px;
        }

        .service-card-wide .swc-heading {
            grid-column: 1 / -1;
        }

        .service-card-wide h3 { color: white; font-size: 1.55rem; margin-bottom: 0.6rem; }
        .service-card-wide .service-sub { color: rgba(255,255,255,0.82); font-size: 0.95rem; }
        .service-card-wide .swc-item h4 { color: white; margin-bottom: 0.4rem; }
        .service-card-wide .swc-item p { color: rgba(255,255,255,0.75); font-size: 0.88rem; }

        /* ===== WHY CHOOSE ===== */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .why-card {
            padding: 1.75rem;
            border-radius: 5px;
            border: 1px solid var(--border);
            background: white;
            transition: all 0.3s ease;
            position: relative;
        }

        .why-card::after {
            content: '';
            position: absolute;
            bottom: 0; left: 1.75rem;
            width: 32px;
            height: 2px;
            background: var(--gold);
            transition: width 0.35s ease;
        }

        .why-card:hover {
            box-shadow: 0 8px 28px rgba(42, 84, 69, 0.08);
            transform: translateY(-3px);
        }

        .why-card:hover::after { width: 64px; }

        .why-num {
            font-family: var(--font-serif);
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--sage-light);
            line-height: 1;
            margin-bottom: 0.6rem;
        }

        .why-card h4 {
            color: var(--forest);
            margin-bottom: 0.5rem;
        }

        .why-card p {
            color: var(--text-secondary);
            font-size: 0.91rem;
        }

        /* ===== ABOUT ===== */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.6fr;
            gap: 4rem;
            align-items: start;
        }

        .about-img {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(42, 84, 69, 0.12);
        }

        .about-img::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--sage) 100%);
        }

        .about-img img { width: 100%; height: auto; display: block; }

        .img-placeholder {
            aspect-ratio: 3/4;
            background: linear-gradient(145deg, var(--cream-mid) 0%, var(--cream) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .about-content h3 {
            font-size: clamp(1.45rem, 2vw, 2rem);
            margin-bottom: 1.1rem;
        }

        .about-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.25rem;
            font-size: 1.02rem;
        }

        .cred-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.25rem;
            margin-top: 2rem;
        }

        .cred-box {
            background: var(--cream);
            padding: 1.6rem;
            border-radius: 4px;
            border-left: 3px solid var(--sage);
        }

        .cred-box h4 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--forest);
            margin-bottom: 0.85rem;
            font-weight: 700;
        }

        .cred-box ul { list-style: none; padding: 0; }

        .cred-box li {
            padding: 0.35rem 0 0.35rem 1.25rem;
            position: relative;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }

        .cred-box li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.75rem;
            width: 5px;
            height: 5px;
            background: var(--gold);
            border-radius: 50%;
        }

        /* ===== PROBLEM SOLUTION ===== */
        .ps-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .ps-col h3 {
            font-size: 1.6rem;
            margin-bottom: 1.75rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .ps-col h3 svg { width: 26px; height: 26px; }

        .ps-item {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .ps-item::before {
            content: '';
            position: absolute;
            left: 0; top: 0.55rem;
            width: 7px; height: 7px;
            border-radius: 50%;
        }

        .problem::before { background: #c44536; }
        .solution::before { background: var(--sage); }

        .ps-item h4 {
            font-size: 1rem;
            margin-bottom: 0.3rem;
            color: var(--forest);
        }

        .ps-item p {
            color: var(--text-secondary);
            font-size: 0.93rem;
        }

        /* ===== HOW IT WORKS ===== */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.25rem;
        }

        .step-card {
            background: white;
            padding: 1.75rem;
            border-radius: 5px;
            position: relative;
        }

        .step-num {
            font-family: var(--font-serif);
            font-size: 2.8rem;
            font-weight: 300;
            color: rgba(107, 143, 120, 0.2);
            line-height: 1;
            margin-bottom: 0.65rem;
        }

        .step-card h4 { color: var(--forest); margin-bottom: 0.5rem; }
        .step-card p { color: var(--text-secondary); font-size: 0.91rem; }

        /* ===== TESTIMONIALS ===== */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.25rem;
        }

        .testimonial {
            background: white;
            padding: 1.75rem;
            border-radius: 5px;
            border-left: 3px solid var(--gold);
            box-shadow: 0 2px 12px rgba(42, 84, 69, 0.05);
        }

        .stars {
            display: flex;
            gap: 3px;
            margin-bottom: 0.85rem;
        }

        .stars svg {
            width: 14px;
            height: 14px;
            fill: var(--gold);
            stroke: var(--gold);
        }

        .testimonial p {
            color: var(--text-primary);
            font-size: 0.93rem;
            line-height: 1.75;
            margin-bottom: 1.1rem;
            font-style: italic;
            font-family: var(--font-serif);
        }

        .testimonial-author {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--text-secondary);
            font-family: var(--font-sans);
            font-style: normal;
        }

        /* ===== AREAS ===== */
        .areas-intro {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }

        .areas-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .area-pill {
            display: inline-block;
            padding: 0.45rem 1.1rem;
            background: white;
            border: 1.5px solid var(--border);
            border-radius: 50px;
            font-size: 0.88rem;
            font-weight: 500;
            color: var(--forest);
            transition: all 0.25s ease;
        }

        .area-pill:hover {
            background: var(--forest);
            color: white;
            border-color: var(--forest);
        }

        /* ===== FAQ ===== */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            margin-bottom: 0.6rem;
            border-radius: 4px;
            overflow: hidden;
            border-left: 3px solid transparent;
            box-shadow: 0 1px 8px rgba(42, 84, 69, 0.05);
            transition: border-color 0.25s ease;
        }

        .faq-item.open { border-left-color: var(--gold); }

        .faq-q {
            width: 100%;
            background: none;
            border: none;
            padding: 1.1rem 1.5rem;
            text-align: left;
            font-family: var(--font-serif);
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--forest);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: background 0.2s ease;
        }

        .faq-q:hover { background: var(--cream); }

        .faq-q svg {
            width: 18px;
            height: 18px;
            stroke: var(--sage);
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }

        .faq-item.open .faq-q svg { transform: rotate(180deg); }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-item.open .faq-a { max-height: 600px; }

        .faq-a-inner {
            padding: 0 1.5rem 1.1rem;
            color: var(--text-secondary);
            font-size: 0.93rem;
            line-height: 1.72;
        }

        /* ===== CTA SECTION ===== */
        .cta-band {
            background: linear-gradient(145deg, var(--forest) 0%, var(--forest-deep) 100%);
            padding: var(--section-y-sm) 3rem;
        }

        .cta-band-inner {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr auto;
            align-items: center;
            gap: 3rem;
        }

        .cta-band h2 { color: white; margin-bottom: 0.5rem; font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
        .cta-band p { color: rgba(255,255,255,0.82); font-size: 0.97rem; }

        .cta-band-btns { display: flex; gap: 0.85rem; flex-shrink: 0; flex-wrap: wrap; }

        /* ===== CONTACT ===== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3.5rem;
        }

        .contact-form-wrap {
            background: white;
            padding: 2.5rem;
            border-radius: 5px;
            box-shadow: 0 4px 24px rgba(42, 84, 69, 0.07);
        }

        .contact-form-wrap h3 {
            margin-bottom: 1.75rem;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 600;
            font-size: 0.88rem;
            color: var(--forest);
            letter-spacing: 0.2px;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 1.5px solid var(--cream-mid);
            border-radius: 3px;
            font-family: var(--font-sans);
            font-size: 0.97rem;
            color: var(--text-primary);
            background: white;
            transition: border-color 0.25s ease;
        }

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

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

        .contact-info-col {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }

        .info-card {
            background: var(--cream);
            padding: 1.5rem;
            border-radius: 4px;
            border-left: 3.5px solid var(--gold);
        }

        .info-card h4 {
            font-size: 0.78rem;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            color: var(--gold);
            margin-bottom: 0.55rem;
            font-weight: 700;
        }

        .info-card p {
            color: var(--text-secondary);
            font-size: 0.91rem;
            line-height: 1.68;
        }

        .phone-display {
            font-size: 1.45rem;
            font-weight: 700;
            color: var(--forest);
            text-decoration: none;
            display: block;
            margin-bottom: 0.2rem;
            font-family: var(--font-serif);
            transition: color 0.25s ease;
        }

        .phone-display:hover { color: var(--gold); }

        /* ===== SERVICE DETAIL PAGES ===== */
        .service-detail-hero {
            background: linear-gradient(145deg, var(--forest) 0%, var(--forest-deep) 100%);
            padding: calc(var(--nav-h) + 2.5rem) 3rem 2.5rem;
            text-align: center;
        }

        .service-detail-hero h1 { color: white; margin-bottom: 0.85rem; }
        .service-detail-hero p { color: rgba(255,255,255,0.85); font-size: 1.05rem; max-width: 580px; margin: 0 auto 1.75rem; }

        .content-prose {
            max-width: 780px;
            margin: 0 auto;
        }

        .content-prose h3 { margin-bottom: 0.9rem; margin-top: 2.25rem; }
        .content-prose h3:first-child { margin-top: 0; }
        .content-prose p { color: var(--text-secondary); margin-bottom: 1.1rem; font-size: 0.97rem; }
        .content-prose ul { list-style: none; padding: 0; margin-bottom: 1.35rem; }

        .content-prose ul li {
            padding: 0.4rem 0 0.4rem 1.5rem;
            position: relative;
            color: var(--text-secondary);
            font-size: 0.97rem;
        }

        .content-prose ul li::before {
            content: '';
            position: absolute;
            left: 0; top: 0.8rem;
            width: 5px; height: 5px;
            background: var(--gold);
            border-radius: 50%;
        }

        .inline-cta {
            background: linear-gradient(135deg, rgba(42, 84, 69, 0.04) 0%, rgba(107, 143, 120, 0.06) 100%);
            border: 1px solid var(--border);
            border-left: 3.5px solid var(--gold);
            padding: 1.75rem 2rem;
            border-radius: 5px;
            margin: 2.5rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .inline-cta p { color: var(--forest); font-weight: 600; margin: 0; font-size: 1.05rem; }

        /* ===== FOOTER ===== */
        footer {
            background: var(--charcoal);
            color: rgba(255,255,255,0.75);
            padding: 3.5rem 2.5rem 2rem;
        }

        .footer-grid {
            max-width: 1180px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2.25rem;
        }

        .footer-brand h3 { color: white; font-size: 1.25rem; margin-bottom: 0.75rem; }
        .footer-brand p { font-size: 0.87rem; line-height: 1.7; margin-bottom: 0.75rem; }

        .footer-col h4 { color: white; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 700; margin-bottom: 1.1rem; }

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

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

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

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

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

        /* ===== MOBILE STICKY ===== */
        .sticky-call {
            display: none;
            position: fixed;
            bottom: 0; left: 0; right: 0;
            background: var(--gold);
            padding: 0.9rem 1.5rem;
            text-align: center;
            z-index: 999;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
        }

        .sticky-call a {
            color: white;
            text-decoration: none;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .sticky-call svg { width: 18px; height: 18px; }

        /* ===== SCROLL REVEAL ===== */
        .reveal {
            opacity: 0;
            transform: translateY(22px);
            transition: opacity 0.7s ease, transform 0.7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1100px) {
            .services-grid { grid-template-columns: repeat(2, 1fr); }
            .trust-bar-grid { grid-template-columns: repeat(3, 1fr); }
            .service-card-wide { grid-template-columns: 1fr; }
            .service-card-wide .swc-heading { grid-column: 1; }
        }

        @media (max-width: 900px) {
            :root { --section-y: 2.75rem; --section-y-sm: 2rem; }

            nav { padding: 0 1.5rem; }
            .section-wrap { padding: var(--section-y) 1.5rem; }
            .section-wrap-sm { padding: var(--section-y-sm) 1.5rem; }

            .nav-links {
                position: fixed;
                top: var(--nav-h); left: -100%;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 1.75rem;
                box-shadow: 0 8px 32px rgba(42, 84, 69, 0.1);
                transition: left 0.3s ease;
                gap: 1.25rem;
                z-index: 999;
            }

            .nav-links.open { left: 0; }

            .mobile-toggle { display: flex; }

            .phone-nav, .nav-right .btn { display: none; }

            .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
            .hero { min-height: auto; padding: 0; }
            .hero-grid { padding: 2rem 1.5rem 3rem; }

            .cred-float { position: static; margin-top: 1rem; }

            .about-grid,
            .ps-grid,
            .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

            .services-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr; }
            .testimonials-grid { grid-template-columns: 1fr; }
            .steps-grid { grid-template-columns: 1fr 1fr; }
            .trust-bar-grid { grid-template-columns: repeat(2, 1fr); }
            .cred-grid { grid-template-columns: 1fr; }

            .cta-band-inner { grid-template-columns: 1fr; }
            .cta-band-btns { justify-content: flex-start; }

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

            .sticky-call { display: block; }

            body { padding-bottom: 60px; }
        }

        @media (max-width: 580px) {
            .steps-grid { grid-template-columns: 1fr; }
            .trust-bar-grid { grid-template-columns: 1fr; }
            nav { padding: 0 1.25rem; }
            .cta-band { padding: var(--section-y-sm) 1.25rem; }
            .contact-form-wrap { padding: 1.75rem 1.25rem; }
            .trust-row { gap: 0.85rem 1.5rem; }
        }

        /* ========== EDITORIAL TREATMENT SECTIONS ========== */
        /* ===== EDITORIAL TREATMENT SECTIONS ===== */
        .editorial-section {
            padding: 5rem 3rem;
        }

        .editorial-grid {
            display: grid;
            grid-template-columns: 55fr 45fr;
            gap: 4.5rem;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }

        .editorial-grid.reverse {
            grid-template-columns: 45fr 55fr;
        }

        /* Image always in second column visually for .reverse */
        .editorial-grid.reverse .editorial-img { order: 2; }
        .editorial-grid.reverse .editorial-content { order: 1; }

        .editorial-img {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(42, 84, 69, 0.12);
            position: relative;
            /* Constrain max height — images support the content, not dominate */
            max-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--cream-mid);
        }

        .editorial-img img {
            width: 100%;
            height: 100%;
            max-height: 520px;
            display: block;
            object-fit: cover;
            object-position: center top;
        }

        .editorial-img::after {
            content: '';
            position: absolute;
            bottom: 0; left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--sage) 100%);
        }

        .editorial-content {
            padding: 0.5rem 0;
        }

        .editorial-content h2 {
            font-size: clamp(1.55rem, 2.3vw, 2.15rem);
            margin-bottom: 1.1rem;
            line-height: 1.15;
        }

        .editorial-content p {
            color: var(--text-secondary);
            font-size: 0.98rem;
            line-height: 1.82;
            margin-bottom: 1rem;
        }

        .editorial-detail-list {
            list-style: none;
            padding: 0;
            margin: 1.25rem 0;
        }

        .editorial-detail-list li {
            padding: 0.4rem 0 0.4rem 1.5rem;
            position: relative;
            color: var(--text-secondary);
            font-size: 0.91rem;
            line-height: 1.65;
        }

        .editorial-detail-list li::before {
            content: '';
            position: absolute;
            left: 0; top: 0.78rem;
            width: 5px; height: 5px;
            background: var(--gold);
            border-radius: 50%;
        }

        @media (max-width: 1050px) {
            .editorial-grid,
            .editorial-grid.reverse {
                grid-template-columns: 1fr 1fr;
                gap: 3rem;
            }
        }

        @media (max-width: 900px) {
            .editorial-section { padding: 3.5rem 1.5rem; }
            .editorial-grid,
            .editorial-grid.reverse {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
            .editorial-grid.reverse .editorial-img,
            .editorial-grid.reverse .editorial-content { order: unset; }
            .editorial-img { max-height: 340px; }
            .editorial-img img { max-height: 340px; }
        }

        @media (max-width: 580px) {
            .editorial-img { max-height: 280px; }
            .editorial-img img { max-height: 280px; }
        }

        /* ========== LONG-TERM CARE SERVICE CARD ========== */
        .ltc-card {
            background: linear-gradient(135deg, var(--forest) 0%, var(--forest-deep) 100%);
            border-radius: 5px;
            padding: 2.25rem 2.5rem;
            margin-top: 1.5rem;
        }

        .ltc-card h3 { color: white; font-size: 1.5rem; margin-bottom: 0.65rem; }
        .ltc-card p { color: rgba(255,255,255,0.84); font-size: 0.96rem; line-height: 1.75; margin: 0; }

        /* ========== BLOG STYLES ========== */
        .blog-hero { padding: 3.5rem 3rem 3rem; background: linear-gradient(160deg,#f6f3ef 0%,#fff 60%,#f0f5f2 100%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
        .blog-hero::after { content:''; position:absolute; top:0; right:0; width:40%; height:100%; background:radial-gradient(ellipse at 80% 40%,rgba(107,143,120,.05) 0%,transparent 70%); pointer-events:none; }
        .blog-hero-inner { max-width:1180px; margin:0 auto; position:relative; z-index:1; }
        .blog-hero-eyebrow { display:inline-flex; align-items:center; gap:.6rem; color:var(--gold); font-size:.78rem; font-weight:700; letter-spacing:3px; text-transform:uppercase; margin-bottom:1rem; }
        .blog-hero-eyebrow::before { content:''; width:24px; height:1.5px; background:var(--gold); flex-shrink:0; }
        .blog-hero h1 { max-width:700px; margin-bottom:1.1rem; line-height:1.1; }
        .blog-hero-sub { font-size:1.05rem; color:var(--text-secondary); max-width:580px; line-height:1.78; margin-bottom:1.75rem; }
        .blog-hero-ctas { display:flex; gap:.85rem; flex-wrap:wrap; }
        .featured-article { background:var(--white); border-radius:6px; overflow:hidden; box-shadow:0 4px 24px rgba(42,84,69,.07); display:grid; grid-template-columns:1.1fr 1fr; transition:box-shadow .3s ease; color:inherit; cursor:pointer; }
        .featured-article:hover { box-shadow:0 12px 40px rgba(42,84,69,.12); }
        .featured-article:hover .read-link { gap:.7rem; }
        .featured-img { position:relative; background:linear-gradient(145deg,#d8e8e0 0%,#c5d8cc 100%); min-height:320px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
        .featured-img::after { content:''; position:absolute; bottom:0; left:0; width:100%; height:4px; background:var(--gold); }
        .featured-img-inner { text-align:center; color:var(--forest); opacity:.35; padding:2rem; }
        .featured-img-inner svg { width:64px; height:64px; stroke:var(--forest); stroke-width:1; margin-bottom:1rem; display:block; margin-left:auto; margin-right:auto; }
        .featured-img-inner p { font-family:var(--font-serif); font-size:.9rem; font-style:italic; }
        .featured-content { padding:2.5rem; display:flex; flex-direction:column; justify-content:center; }
        .article-meta { display:flex; align-items:center; gap:1rem; margin-bottom:1rem; flex-wrap:wrap; }
        .category-tag { display:inline-block; padding:.28rem .8rem; background:rgba(42,84,69,.08); border-radius:50px; font-size:.75rem; font-weight:700; letter-spacing:.8px; text-transform:uppercase; color:var(--forest); }
        .category-tag.gold { background:rgba(184,150,90,.1); color:var(--gold); }
        .read-time { font-size:.8rem; color:var(--text-light); font-weight:500; display:flex; align-items:center; gap:.35rem; }
        .read-time svg { width:13px; height:13px; stroke:var(--text-light); }
        .featured-content h2 { font-size:clamp(1.4rem,2.2vw,1.85rem); margin-bottom:.9rem; line-height:1.2; }
        .featured-content .excerpt { font-size:.97rem; color:var(--text-secondary); line-height:1.75; margin-bottom:1.5rem; }
        .read-link { color:var(--gold); font-weight:600; font-size:.88rem; letter-spacing:.3px; text-decoration:none; display:inline-flex; align-items:center; gap:.4rem; transition:gap .25s ease; }
        .read-link svg { width:14px; height:14px; stroke:var(--gold); }
        .blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
        .blog-card { background:var(--white); border-radius:5px; overflow:hidden; box-shadow:0 2px 14px rgba(42,84,69,.055); transition:all .35s cubic-bezier(.4,0,.2,1); display:flex; flex-direction:column; color:inherit; position:relative; cursor:pointer; }
        .blog-card::before { content:''; position:absolute; top:0; left:0; right:0; height:2.5px; background:var(--gold); transform:scaleX(0); transform-origin:left; transition:transform .35s ease; }
        .blog-card:hover { transform:translateY(-5px); box-shadow:0 14px 40px rgba(42,84,69,.1); }
        .blog-card:hover::before { transform:scaleX(1); }
        .blog-card:hover .read-link { gap:.65rem; }
        .card-img { position:relative; height:180px; overflow:hidden; }
        .card-img-bg { width:100%; height:100%; display:flex; align-items:center; justify-content:center; }
        .card-img-bg svg { width:48px; height:48px; opacity:.3; }
        .cbg-green { background:linear-gradient(145deg,#c8ddd3 0%,#b5cdc4 100%); }
        .cbg-sage  { background:linear-gradient(145deg,#d0dbd5 0%,#becfc6 100%); }
        .cbg-deep  { background:linear-gradient(145deg,#bfcfc8 0%,#adc0b8 100%); }
        .card-content { padding:1.6rem; display:flex; flex-direction:column; flex-grow:1; }
        .card-content .article-meta { margin-bottom:.85rem; }
        .card-content h3 { font-size:clamp(1.05rem,1.5vw,1.25rem); margin-bottom:.75rem; line-height:1.25; color:var(--forest); }
        .card-content .excerpt { font-size:.9rem; color:var(--text-secondary); line-height:1.7; margin-bottom:1.25rem; flex-grow:1; }
        .article-view { display:none; }
        .article-view.active { display:block; }
        .blog-index-view { display:block; }
        .blog-index-view.hidden { display:none; }
        .article-hero { background:linear-gradient(145deg,var(--forest) 0%,var(--forest-deep) 100%); padding:calc(var(--nav-h) + 2.5rem) 3rem 2.5rem; }
        .article-hero-inner { max-width:1180px; margin:0 auto; }
        .back-link { display:inline-flex; align-items:center; gap:.4rem; color:rgba(255,255,255,.7); font-size:.85rem; font-weight:500; margin-bottom:1.5rem; transition:color .25s ease; cursor:pointer; }
        .back-link:hover { color:var(--gold-light); }
        .back-link svg { width:14px; height:14px; stroke:currentColor; }
        .article-hero h1 { color:white; max-width:820px; margin-bottom:1rem; }
        .article-hero .category-tag { background:rgba(255,255,255,.15); color:white; }
        .article-hero .read-time { color:rgba(255,255,255,.65); }
        .article-hero .read-time svg { stroke:rgba(255,255,255,.5); }
        .article-body { max-width:780px; margin:0 auto; padding:3rem 0; }
        .article-body h2 { font-size:clamp(1.4rem,2.2vw,1.85rem); margin-top:2.5rem; margin-bottom:.9rem; }
        .article-body h3 { font-size:clamp(1.1rem,1.6vw,1.4rem); margin-top:2rem; margin-bottom:.75rem; }
        .article-body h2:first-child,.article-body h3:first-child { margin-top:0; }
        .article-body p { color:var(--text-secondary); font-size:1rem; line-height:1.8; margin-bottom:1.25rem; }
        .article-body ul,.article-body ol { padding:0; margin-bottom:1.5rem; list-style:none; }
        .article-body ul li,.article-body ol li { padding:.4rem 0 .4rem 1.5rem; position:relative; color:var(--text-secondary); font-size:.97rem; line-height:1.72; }
        .article-body ul li::before { content:''; position:absolute; left:0; top:.8rem; width:5px; height:5px; background:var(--gold); border-radius:50%; }
        .article-body ol { counter-reset:item; }
        .article-body ol li { counter-increment:item; }
        .article-body ol li::before { content:counter(item)"."; position:absolute; left:0; top:.4rem; font-weight:700; color:var(--forest); font-size:.85rem; }
        .article-body a { color:var(--forest); text-decoration:underline; text-decoration-color:rgba(42,84,69,.3); text-underline-offset:2px; transition:color .2s; }
        .article-body a:hover { color:var(--gold); }
        .article-body blockquote { border-left:3px solid var(--gold); padding:1rem 1.5rem; margin:2rem 0; background:rgba(184,150,90,.05); border-radius:0 4px 4px 0; }
        .article-body blockquote p { font-family:var(--font-serif); font-style:italic; font-size:1.15rem; color:var(--forest); margin:0; }
        .article-divider { border:none; border-top:1px solid var(--border); margin:2.5rem 0; }
        .external-ref { background:var(--cream); border:1px solid var(--border); border-radius:4px; padding:1.1rem 1.35rem; margin:1.5rem 0; display:flex; align-items:flex-start; gap:.75rem; }
        .external-ref svg { width:16px; height:16px; stroke:var(--sage); flex-shrink:0; margin-top:2px; }
        .external-ref p { font-size:.88rem; color:var(--text-secondary); margin:0; line-height:1.6; }
        .external-ref a { color:var(--forest); font-weight:600; }
        @media (max-width:1000px) { .blog-grid { grid-template-columns:repeat(2,1fr); } .featured-article { grid-template-columns:1fr; } .featured-img { min-height:220px; } }
        @media (max-width:700px) { .blog-grid { grid-template-columns:1fr; } .blog-hero { padding:2.5rem 1.5rem 2rem; } .article-hero { padding:calc(var(--nav-h) + 1.75rem) 1.5rem 2rem; } .article-body { padding:2rem 1.5rem; } }
    

/* ===== About page refinement pass ===== */
.about-page .about-content p,
#about .about-content p {
    font-size: 0.98rem;
    line-height: 1.78;
    color: var(--text-secondary);
}
.about-page .about-grid,
#about .about-grid {
    align-items: center;
}
.about-page .cred-box,
#about .cred-box {
    background: rgba(255,255,255,0.7);
    border-left: 2.5px solid var(--sage);
    box-shadow: 0 2px 14px rgba(42,84,69,0.045);
}
.about-page .why-card,
#about .why-card {
    min-height: 100%;
    padding: 2rem;
    box-shadow: 0 2px 14px rgba(42,84,69,0.045);
}
.about-page .content-prose,
#about .content-prose {
    max-width: 760px;
    font-size: 0.98rem;
    line-height: 1.82;
}
.about-page .cta-band-inner,
#about .cta-band-inner {
    align-items: center;
}
@media (max-width: 900px) {
    .about-page .about-grid,
    #about .about-grid {
        align-items: start;
    }
}


/* ===== FINAL HOMEPAGE CLEANUP ===== */

.trust-pills{
display:flex;
flex-wrap:wrap;
gap:14px;
align-items:center;
}

.trust-pill-clean{
padding-left:0 !important;
margin-left:0 !important;
}

.trust-pill-clean svg{
display:none !important;
}

.services-grid-clean{
display:grid;
grid-template-columns:repeat(2,minmax(0,1fr));
gap:2rem;
align-items:stretch;
margin-bottom:2rem;
}

.services-grid-clean .service-card{
height:100%;
display:flex;
flex-direction:column;
justify-content:space-between;
min-height:340px;
}

.ltc-card{
margin-top:1rem;
border-radius:24px;
overflow:hidden;
background:linear-gradient(135deg,#1f4f42,#295a4d);
padding:0;
}

.ltc-card-inner{
padding:3rem;
color:#fff;
}

.ltc-card h3{
color:#fff;
margin-bottom:1rem;
}

.ltc-card p{
color:rgba(255,255,255,0.9);
max-width:850px;
margin-bottom:1.5rem;
line-height:1.8;
}

.ltc-link{
display:inline-flex;
align-items:center;
justify-content:center;
padding:14px 28px;
border:1px solid rgba(255,255,255,0.45);
border-radius:12px;
color:#fff;
text-decoration:none;
font-weight:600;
transition:all .25s ease;
}

.ltc-link:hover{
background:#fff;
color:#1f4f42;
}

@media(max-width:900px){

.services-grid-clean{
grid-template-columns:1fr;
}

}


/* ===== V4 cleanup and service page polish ===== */
.trust-row-clean{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:1rem 1.65rem;
}
.trust-row-clean .trust-pill{
    margin:0;
    white-space:nowrap;
}
.trust-pill-no-icon{
    padding-left:0;
}
.trust-pill-no-icon::before,
.trust-pill-no-icon svg{
    display:none !important;
}

.services-hero-polish{
    padding-top:calc(var(--nav-h) + 3rem);
    padding-bottom:3rem;
}
.services-overview-polish .section-header{
    margin-bottom:2.75rem;
}
.services-page-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:1.5rem;
    align-items:stretch;
}
.service-card-polish{
    min-height:0;
    height:100%;
    padding:2rem;
    box-shadow:0 8px 30px rgba(42,84,69,.06);
}
.service-card-polish h3{
    margin-bottom:.85rem;
}
.service-card-detail{
    margin-top:1.25rem;
    padding-top:1.1rem;
    border-top:1px solid var(--border);
}
.service-card-detail h4{
    font-size:.78rem;
    font-weight:700;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--forest);
    margin-bottom:.65rem;
}
.service-card-detail ul{
    list-style:none;
    padding:0;
    margin:0 0 1rem;
}
.service-card-detail li{
    color:var(--text-secondary);
    font-size:.9rem;
    line-height:1.6;
    padding:.25rem 0;
}
.service-card-wide-feature{
    grid-column:1 / -1;
    background:linear-gradient(135deg, rgba(42,84,69,.04), rgba(107,143,120,.07));
    border:1px solid var(--border);
}
.service-card-wide-feature .service-card-detail ul{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:.25rem 1.25rem;
}
@media(max-width:900px){
    .services-page-grid{
        grid-template-columns:1fr !important;
    }
    .service-card-wide-feature .service-card-detail ul{
        grid-template-columns:1fr;
    }
    .trust-row-clean .trust-pill{
        white-space:normal;
    }
}




/* ===== BLOG FEATURE MATCH FIX ===== */

.featured-article-grid{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:0;
    background:white;
    border-radius:0;
    overflow:hidden;
    margin-top:2rem;
}

.featured-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    min-height:460px;
}

.featured-content-wrap{
    background:#f7f4ef;
    padding:4rem 3.5rem;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.featured-title{
    font-size:3.2rem;
    line-height:1.12;
    margin:1.5rem 0;
    color:var(--forest);
    font-family:var(--font-display);
    letter-spacing:-.03em;
}

.featured-copy{
    font-size:1.08rem;
    line-height:1.9;
    color:var(--text-secondary);
    margin-bottom:2rem;
}

.blog-grid-modern{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:1.5rem;
    margin-top:3rem;
}

.blog-card-modern{
    background:white;
    overflow:hidden;
    border-radius:0;
    box-shadow:none;
    border:1px solid rgba(42,84,69,.08);
}

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

.blog-card-content{
    padding:1.75rem;
}

.blog-card-content h3{
    font-size:2rem;
    line-height:1.2;
    margin:1rem 0;
    font-family:var(--font-display);
    color:var(--forest);
}

.blog-card-content p{
    color:var(--text-secondary);
    line-height:1.8;
}

.blog-meta-row{
    display:flex;
    align-items:center;
    gap:1rem;
    flex-wrap:wrap;
}

.blog-tag{
    display:inline-flex;
    align-items:center;
    padding:.5rem .95rem;
    border-radius:999px;
    background:rgba(42,84,69,.08);
    color:var(--forest);
    font-size:.82rem;
    font-weight:700;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.blog-read-time{
    color:var(--text-secondary);
    font-size:.95rem;
}

@media(max-width:1100px){

.featured-article-grid{
    grid-template-columns:1fr;
}

.featured-content-wrap{
    padding:2.5rem;
}

.featured-title{
    font-size:2.5rem;
}

.blog-grid-modern{
    grid-template-columns:1fr;
}
}


/* ===== FINAL GLOBAL POLISH ===== */

:root{
    --section-spacing: clamp(5rem, 8vw, 8rem);
}

body{
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.section-wrap,
section{
    position: relative;
}

.section-wrap{
    padding-top: var(--section-spacing);
    padding-bottom: var(--section-spacing);
}

.container{
    width:min(1280px, calc(100% - 4rem));
}

h1,h2,h3,h4{
    letter-spacing:-0.035em;
    line-height:1.08;
}

h1{
    font-size:clamp(3.2rem,5vw,5.8rem);
}

h2{
    font-size:clamp(2.8rem,4vw,4.6rem);
}

h3{
    font-size:clamp(1.6rem,2vw,2.4rem);
}

p{
    line-height:1.85;
}

.section-label{
    letter-spacing:.24em;
    font-size:.82rem;
    margin-bottom:1.25rem;
}

.section-title{
    margin-bottom:1.5rem;
}

.section-sub{
    max-width:780px;
    font-size:1.15rem;
    line-height:1.9;
}

.btn,
.button,
a.button,
button{
    transition:all .28s ease;
}

.btn:hover,
.button:hover,
a.button:hover,
button:hover{
    transform:translateY(-2px);
}

.service-card,
.blog-card-modern,
.card{
    transition:transform .28s ease, box-shadow .28s ease;
}

.service-card:hover,
.blog-card-modern:hover,
.card:hover{
    transform:translateY(-4px);
}

img{
    image-rendering:auto;
}

.featured-article-grid{
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 18px 50px rgba(20,55,45,.08);
}

.blog-card-modern{
    border-radius:24px;
    overflow:hidden;
    border:1px solid rgba(42,84,69,.08);
    box-shadow:0 10px 28px rgba(42,84,69,.04);
}

.blog-card-content{
    padding:2rem;
}

.blog-card-content h3{
    font-size:2rem;
}

.service-link{
    font-weight:700;
    letter-spacing:.02em;
}

nav{
    backdrop-filter: blur(10px);
}

@media(max-width:768px){

.container{
    width:min(100%, calc(100% - 2rem));
}

.section-wrap{
    padding-top:4.5rem;
    padding-bottom:4.5rem;
}

.featured-title{
    font-size:2.2rem;
}

.blog-card-content{
    padding:1.5rem;
}
}


/* ===== FINAL TYPOGRAPHY CONSISTENCY PASS ===== */

/* Blog Hero Typography */
.featured-article-grid h1,
.featured-article-grid .featured-title,
.blog-hero h1{
    font-size: clamp(3rem, 4vw, 4.6rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -0.035em !important;
    font-weight: 400 !important;
}

/* Blog body text */
.featured-article-grid p,
.blog-card-modern p,
.blog-content p{
    font-size: 1.08rem !important;
    line-height: 1.85 !important;
    color: #5d6762 !important;
}

/* About page heading balance */
.about-content h1,
.about-content h2,
.about-hero h1{
    font-size: clamp(2.8rem, 3.8vw, 4.2rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
}

/* About page body copy */
.about-content p,
.about-hero p{
    font-size: 1.08rem !important;
    line-height: 1.9 !important;
    color: #5d6762 !important;
}

/* Service cards */
.service-card h3{
    font-size: 2rem !important;
    line-height: 1.2 !important;
}

.service-card p{
    font-size: 1.03rem !important;
    line-height: 1.85 !important;
}

/* Consistent spacing rhythm */
.hero-section,
.blog-hero,
.about-hero,
.services-hero{
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

/* Card spacing consistency */
.service-card,
.blog-card-modern,
.info-card{
    padding-bottom: .5rem;
}

/* Improve desktop readability */
@media (min-width: 1200px){

.featured-article-grid{
    min-height: 720px;
}

.featured-article-grid img{
    object-fit: cover;
}

.blog-card-modern h3{
    font-size: 2rem !important;
}

.about-content{
    max-width: 760px;
}
}

/* Mobile scaling consistency */
@media (max-width: 768px){

.featured-article-grid h1,
.featured-article-grid .featured-title,
.blog-hero h1{
    font-size: 2.6rem !important;
}

.about-content h1,
.about-content h2,
.about-hero h1{
    font-size: 2.4rem !important;
}

p{
    font-size: 1rem !important;
    line-height: 1.8 !important;
}
}


/* ===== Philosophy Section Upgrade ===== */

.editorial-philosophy-intro{
    position: relative;
    max-width: 900px;
    margin: 3.5rem auto 4rem auto;
    padding: 2rem 2rem 2rem 3rem;
    animation: fadeLift .8s ease;
}

.editorial-accent{
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:#c7a15a;
    border-radius:10px;
}

.editorial-philosophy-intro p{
    font-size:1.15rem !important;
    line-height:2 !important;
    color:#5e6662 !important;
    margin-bottom:2rem;
    letter-spacing:-0.01em;
}

.editorial-philosophy-intro p:last-child{
    margin-bottom:0;
}

.philosophy-section h2{
    margin-bottom:1.5rem !important;
}

.philosophy-cards{
    margin-top:2rem !important;
    gap:2rem !important;
}

.philosophy-card{
    min-height:320px;
    padding:3rem 2.5rem !important;
    display:flex;
    flex-direction:column;
    justify-content:flex-start;
    animation: fadeLift .8s ease;
}

.philosophy-card .number{
    opacity:.4;
    font-size:2.5rem !important;
    margin-bottom:1rem;
}

.philosophy-card::after{
    bottom:0;
}

@keyframes fadeLift{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

.editorial-philosophy-intro{
    padding:1.5rem 1rem 1.5rem 2rem;
    margin:2rem auto 3rem auto;
}

.editorial-philosophy-intro p{
    font-size:1.02rem !important;
    line-height:1.9 !important;
}

.philosophy-card{
    min-height:auto;
    padding:2rem 1.5rem !important;
}
}


/* ===== FINAL DELIVERY FIXES ===== */

/* Homepage trust row: all three credentials use matching check icons */
.trust-row-clean .trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}
.trust-row-clean .trust-pill svg {
    width: 1rem;
    height: 1rem;
    color: var(--sage);
    flex: 0 0 auto;
}
.trust-pill-no-icon::before {
    display: none !important;
}

/* Homepage long-term care section now matches service-card aesthetic */
.ltc-card-light {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-top: 3px solid var(--gold) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 32px rgba(42,84,69,.055) !important;
    color: var(--text-primary) !important;
    margin-top: 2rem !important;
}
.ltc-card-light .ltc-card-inner {
    padding: 2.5rem !important;
    color: var(--text-primary) !important;
}
.ltc-card-light h3 {
    color: var(--forest) !important;
    margin: 1rem 0 .85rem !important;
}
.ltc-card-light p {
    color: var(--text-secondary) !important;
    max-width: 900px !important;
}
.ltc-card-light .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: rgba(107,143,120,.10);
    color: var(--sage);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.ltc-card-light .service-icon svg {
    width: 24px;
    height: 24px;
}
.ltc-card-light .service-link {
    color: var(--gold) !important;
}

/* Services page wide LTC service card: keep rectangular, same system as cards above */
.ltc-service-card-clean,
.service-card-wide-feature {
    background: var(--white) !important;
    border: 1px solid var(--border) !important;
    border-top: 3px solid var(--gold) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 32px rgba(42,84,69,.055) !important;
}
.service-card-wide-feature h3,
.ltc-service-card-clean h3 {
    color: var(--forest) !important;
}
.service-card-wide-feature p,
.ltc-service-card-clean p,
.service-card-wide-feature li,
.ltc-service-card-clean li {
    color: var(--text-secondary) !important;
}
.service-card-wide-feature .service-card-detail ul,
.ltc-service-card-clean .service-card-detail ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .35rem 2rem;
}
@media (max-width: 800px) {
    .service-card-wide-feature .service-card-detail ul,
    .ltc-service-card-clean .service-card-detail ul {
        grid-template-columns: 1fr;
    }
}


/* ===== SERVICE PAGE CTA CLEANUP ===== */
.service-detail-hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detail-hero p:last-child {
    margin-bottom: 0;
}

.content-prose h3 {
    margin-top: 3rem;
}

.content-prose h3:first-child {
    margin-top: 0;
}








/* ===== UNIFORM SERVICE CARD TYPOGRAPHY ===== */
.service-card h3,
.feature-card h3,
.service-grid h3,
.services-grid h3 {
    font-size: 3rem !important;
    line-height: 1.1 !important;
    font-weight: 400 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 2rem !important;
}

.service-card p,
.feature-card p,
.service-grid p,
.services-grid p {
    font-size: 1.05rem !important;
    line-height: 1.85 !important;
    margin-top: 0 !important;
}

@media (max-width: 768px) {
    .service-card h3,
    .feature-card h3,
    .service-grid h3,
    .services-grid h3 {
        font-size: 2.1rem !important;
        line-height: 1.12 !important;
    }
}


/* ===== FINAL EXACT HOMEPAGE SERVICE HEADING MATCH ===== */
#services-home .home-service-heading,
#services-home .ltc-card-light h3.home-service-heading,
#services-home .service-card h3.home-service-heading,
#services-home .services-grid h3.home-service-heading {
    font-family: var(--font-serif) !important;
    font-size: clamp(2.6rem, 3.2vw, 3.55rem) !important;
    line-height: 1.08 !important;
    font-weight: 400 !important;
    letter-spacing: -0.025em !important;
    color: var(--forest) !important;
    margin: 0 0 1.65rem 0 !important;
    min-height: auto !important;
}

#services-home .ltc-card-light .ltc-card-inner {
    padding: 3rem !important;
}

#services-home .ltc-card-light p,
#services-home .service-card p {
    font-size: 1.05rem !important;
    line-height: 1.85 !important;
    color: var(--text-secondary) !important;
}

@media (max-width: 768px) {
    #services-home .home-service-heading,
    #services-home .ltc-card-light h3.home-service-heading,
    #services-home .service-card h3.home-service-heading,
    #services-home .services-grid h3.home-service-heading {
        font-size: 2.1rem !important;
        line-height: 1.12 !important;
    }
}
