
        /* ============================================
           CSS VARIABLES & RESET
        ============================================ */
        :root {
            --navy: #4a5568;
            --navy-dark: #2d3748;
            --navy-darker: #1a202c;
            --navy-light: #5a6578;
            --gold: #b8985f;
            --gold-light: #c9a96f;
            --gold-dark: #a08050;
            --cream: #faf8f5;
            --cream-dark: #f0ede8;
            --white: #ffffff;
            --text-dark: #1a202c;
            --text-muted: #718096;
            --text-light: rgba(255,255,255,0.85);
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: var(--navy-darker);
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 500;
            line-height: 1.3;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        /* ============================================
           HEADER & NAVIGATION
        ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--navy-dark);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .header.scrolled {
            box-shadow: var(--shadow-lg);
        }

        .header-top {
            background: var(--navy-darker);
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .header-top-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 2rem;
        }

        .header-top a {
            color: rgba(255,255,255,0.8);
            font-size: 0.875rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .header-top a:hover {
            color: var(--gold);
        }

        .header-top svg {
            width: 16px;
            height: 16px;
        }

        .header-main {
            padding: 1rem 0;
            background: var(--navy-dark);
        }

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

        .logo {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .logo-icon {
            width: auto;
            height: 34px;
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-weight: 600;
            color: var(--white);
            letter-spacing: 1px;
        }

        .logo-tagline {
            font-size: 0.7rem;
            color: var(--gold);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 2px;
        }

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

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

        .nav-link {
            font-weight: 500;
            color: var(--white);
            padding: 0.5rem 0;
            position: relative;
            transition: var(--transition);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

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

        .nav-link:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 1.75rem;
            font-family: 'Source Sans 3', sans-serif;
            font-size: 0.9375rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            border-radius: 4px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

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

        .btn-primary:hover {
            background: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-secondary:hover {
            background: var(--white);
            color: var(--navy-dark);
        }

        .btn-secondary-dark {
            background: transparent;
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-secondary-dark:hover {
            background: var(--navy);
            color: var(--white);
        }

        .btn-large {
            padding: 1rem 2.25rem;
            font-size: 1rem;
        }

        /* Mobile menu button */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu-btn span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--white);
            margin: 5px 0;
            transition: var(--transition);
        }

        /* ============================================
           HERO SECTION - DARKER DESIGN
        ============================================ */
        .hero {
            padding-top: 140px;
            background: linear-gradient(135deg, var(--navy-darker) 0%, var(--navy-dark) 50%, var(--navy) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8985f' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
            z-index: 0;
        }

        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            padding: 4rem 2rem 5rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text h1 {
            font-size: 3.25rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.15;
        }

        .hero-text h1 span {
            color: var(--gold);
        }

        .hero-text p {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            max-width: 520px;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero-trust {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .trust-icon {
            width: 40px;
            height: 40px;
            background: var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-icon svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .trust-text {
            font-size: 0.875rem;
            line-height: 1.4;
        }

        .trust-text strong {
            display: block;
            color: var(--white);
            font-weight: 600;
        }

        .trust-text span {
            color: rgba(255,255,255,0.7);
        }

        .hero-image {
            position: relative;
        }

        .hero-image-container {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .hero-image-container::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--gold);
            border-radius: 8px;
            z-index: -1;
        }

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

        .hero-image-placeholder {
            width: 100%;
            aspect-ratio: 4/5;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: var(--white);
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .hero-image-placeholder svg {
            width: 80px;
            height: 80px;
            fill: var(--gold);
            margin-bottom: 1rem;
            opacity: 0.8;
        }

        .hero-image-placeholder p {
            font-size: 0.875rem;
            opacity: 0.7;
        }

        /* ============================================
           PRACTICE AREAS / HOW CAN WE HELP - DARKER
        ============================================ */
        .practice-areas {
            padding: 6rem 0;
            background: var(--navy-dark);
        }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.125rem;
            color: rgba(255,255,255,0.7);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .practice-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .practice-card {
            background: var(--navy);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            padding: 2rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .practice-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--gold);
            transition: var(--transition);
        }

        .practice-card:hover {
            border-color: var(--gold);
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            background: var(--navy-light);
        }

        .practice-card:hover::before {
            height: 100%;
        }

        .practice-icon {
            width: 56px;
            height: 56px;
            background: rgba(184, 152, 95, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            transition: var(--transition);
        }

        .practice-card:hover .practice-icon {
            background: var(--gold);
        }

        .practice-icon svg {
            width: 26px;
            height: 26px;
            fill: var(--gold);
            transition: var(--transition);
        }

        .practice-card:hover .practice-icon svg {
            fill: var(--white);
        }

        .practice-card h3 {
            font-size: 1.35rem;
            color: var(--white);
            margin-bottom: 0.75rem;
        }

        .practice-card p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .practice-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9375rem;
            transition: var(--transition);
        }

        .practice-link svg {
            width: 16px;
            height: 16px;
            fill: currentColor;
            transition: var(--transition);
        }

        .practice-link:hover {
            color: var(--gold-light);
        }

        .practice-link:hover svg {
            transform: translateX(4px);
        }

        /* ============================================
           WHY MILEBRIDGE SECTION - LIGHTER CONTRAST
        ============================================ */
        .why-us {
            padding: 6rem 0;
            background: var(--cream);
            color: var(--text-dark);
            position: relative;
            overflow: hidden;
        }

        .why-us::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234a5568' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .why-us .container {
            position: relative;
            z-index: 1;
        }

        .why-us .section-header h2 {
            color: var(--navy-dark);
        }

        .why-us .section-header p {
            color: var(--text-muted);
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .why-item {
            text-align: center;
            padding: 2rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

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

        .why-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .why-item:hover .why-icon {
            background: var(--gold);
        }

        .why-icon svg {
            width: 32px;
            height: 32px;
            fill: var(--gold);
            transition: var(--transition);
        }

        .why-item:hover .why-icon svg {
            fill: var(--white);
        }

        .why-item h3 {
            font-size: 1.25rem;
            color: var(--navy-dark);
            margin-bottom: 0.75rem;
        }

        .why-item p {
            font-size: 0.9375rem;
            color: var(--text-muted);
            line-height: 1.6;
        }

        /* ============================================
           TESTIMONIALS SECTION
        ============================================ */
        .testimonials {
            padding: 6rem 0;
            background: var(--navy);
        }

        .testimonials .section-header h2 {
            color: var(--white);
        }

        .testimonial-card {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 3rem;
        }

        .testimonial-quote {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.75rem;
            font-style: italic;
            color: var(--white);
            margin-bottom: 2rem;
            position: relative;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-author-info strong {
            display: block;
            color: var(--white);
            font-weight: 600;
        }

        .testimonial-author-info span {
            font-size: 0.875rem;
            color: rgba(255,255,255,0.7);
        }

        .testimonial-placeholder {
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            padding: 3rem;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .testimonial-placeholder p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 1rem;
        }

        .google-review-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gold);
            font-weight: 500;
            transition: var(--transition);
        }

        .google-review-link:hover {
            color: var(--gold-light);
        }

        .google-review-link svg {
            width: 20px;
            height: 20px;
        }

        /* ============================================
           ABOUT PREVIEW
        ============================================ */
        .about-preview {
            padding: 6rem 0;
            background: var(--navy-dark);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            position: relative;
        }

        .about-image-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-bridge-icon {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: var(--gold);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
        }

        .about-bridge-icon svg {
            width: 60px;
            height: auto;
            fill: var(--white);
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: rgba(255,255,255,0.8);
            margin-bottom: 1.25rem;
        }

        .about-list {
            list-style: none;
            margin: 2rem 0;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            color: rgba(255,255,255,0.8);
        }

        .about-list svg {
            width: 20px;
            height: 20px;
            fill: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .cta-section p {
            font-size: 1.125rem;
            color: rgba(255,255,255,0.9);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .cta-section .btn {
            background: var(--navy-dark);
            color: var(--white);
        }

        .cta-section .btn:hover {
            background: var(--navy-darker);
        }

        /* ============================================
           CONTACT SECTION
        ============================================ */
        .contact-section {
            padding: 6rem 0;
            background: var(--navy-darker);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.25fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-size: 2.5rem;
            color: var(--white);
            margin-bottom: 1rem;
        }

        .contact-info > p {
            color: rgba(255,255,255,0.7);
            margin-bottom: 2rem;
        }

        .contact-details-list {
            list-style: none;
        }

        .contact-details-list li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: rgba(255,255,255,0.8);
        }

        .contact-details-list svg {
            width: 24px;
            height: 24px;
            fill: var(--gold);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .contact-details-list strong {
            display: block;
            color: var(--white);
            margin-bottom: 0.25rem;
        }

        .contact-details-list a {
            color: rgba(255,255,255,0.8);
            transition: var(--transition);
        }

        .contact-details-list a:hover {
            color: var(--gold);
        }

        .contact-form-container {
            background: var(--navy-dark);
            padding: 2.5rem;
            border-radius: 8px;
            border: 1px solid rgba(255,255,255,0.1);
        }

        .contact-form-container h3 {
            font-size: 1.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

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

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

        .form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            color: rgba(255,255,255,0.8);
            margin-bottom: 0.5rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 0.875rem 1rem;
            font-size: 1rem;
            font-family: inherit;
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 4px;
            background: rgba(255,255,255,0.05);
            color: var(--white);
            transition: var(--transition);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255,255,255,0.4);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--gold);
            background: rgba(255,255,255,0.08);
        }

        .form-group select option {
            background: var(--navy-dark);
            color: var(--white);
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: var(--navy-darker);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo-text {
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(255,255,255,0.6);
            font-size: 0.9375rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social a:hover {
            background: var(--gold);
        }

        .footer-social svg {
            width: 20px;
            height: 20px;
            fill: var(--white);
        }

        .footer-links h4 {
            color: var(--white);
            font-size: 1.125rem;
            margin-bottom: 1.25rem;
        }

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

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

        .footer-links a {
            color: rgba(255,255,255,0.6);
            font-size: 0.9375rem;
            transition: var(--transition);
        }

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

        .footer-bottom {
            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;
        }

        .footer-bottom p {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: rgba(255,255,255,0.5);
            font-size: 0.875rem;
            transition: var(--transition);
        }

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

        /* ============================================
           RESPONSIVE DESIGN
        ============================================ */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text p {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-trust {
                justify-content: center;
            }

            .hero-image {
                max-width: 400px;
                margin: 0 auto;
            }

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

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

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

            .about-image {
                order: -1;
                max-width: 400px;
                margin: 0 auto;
            }

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

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

        @media (max-width: 768px) {
            .header-top {
                display: none;
            }

            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                padding-top: 100px;
            }

            .hero-text h1 {
                font-size: 2.25rem;
            }

            .hero-trust {
                flex-direction: column;
                gap: 1rem;
            }

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

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

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

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

            .footer-social {
                justify-content: center;
            }

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

            .footer-legal {
                justify-content: center;
            }
        }

        /* ============================================
           UTILITY CLASSES
        ============================================ */
        .text-gold { color: var(--gold); }
        .bg-cream { background: var(--cream); }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }

    
/* ===== Additions: testimonials grid + interior pages ===== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto 2.5rem;
}
.testimonial-more { text-align: center; }
.page-hero {
    background: linear-gradient(180deg, var(--navy-darker, #1a2332) 0%, var(--navy-dark, #232f42) 100%);
    padding: 9rem 0 4rem;
    text-align: left;
}
.page-hero h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #ffffff;
    margin-bottom: 1rem;
}
.page-hero h1 span { color: var(--gold, #b8985f); }
.page-hero .lede {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    max-width: 720px;
    line-height: 1.7;
}
.page-content { padding: 4.5rem 0; background: var(--navy-dark, #232f42); }
.page-content .container { max-width: 900px; }
.content-block { margin-bottom: 3rem; }
.content-block h2 {
    color: var(--gold, #b8985f);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.content-block p {
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.75rem 2.5rem;
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.service-list li {
    color: rgba(255,255,255,0.85);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}
.service-list li::before {
    content: "";
    position: absolute;
    left: 0; top: 0.62em;
    width: 0.55rem; height: 0.55rem;
    background: var(--gold, #b8985f);
    border-radius: 1px;
    transform: rotate(45deg);
}

/* Understated single portrait on the About page */
.about-photo {
    float: right;
    width: 260px;
    max-width: 40%;
    border-radius: 8px;
    margin: 0 0 1.25rem 2rem;
}
@media (max-width: 640px) {
    .about-photo {
        float: none;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 1.5rem;
    }
}
.hero-text { max-width: 820px; }
