    /* CSS Variables */
    :root {
        --gold: #956d46;
        --british-racing-green: #004225;
        --white: #FFFFFF;
        --platinum: #E5E4E2;
        --deep-royal-blue: #002366;
        --black: #000000;
        --marble-white: #FAFAFA;
        --light-gray: #F8F8F8;
        --zephoric-navy: #1B365D;
        --zephoric-dark: #001524;
        --gold-mask: url('<?php echo get_template_directory_uri(); ?>/assets/images/styling/goldelementclippingmask.png');
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    /* Gold Mask Utility Classes */
    .gold-text-mask {
        background-image: var(--gold-mask);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: var(--gold);
    }
    
    .gold-bg-mask {
        background-image: var(--gold-mask);
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    
    .gold-border-mask {
        position: relative;
    }
    
    .gold-border-mask::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--gold-mask);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: xor;
        -webkit-mask-composite: xor;
        pointer-events: none;
    }

    /* Apply Gold Mask to All Gold Text Elements */
    .brand-name,
    .section-title,
    .section-description,
    .footer-headline,
    .newsletter-title,
    .footer-column-title,
    .trust-icon,
    .rebuilt-member,
    .testimonial-v2-member,
    .quote-mark-v2,
    .rebuilt-quote,
    .pillar-dot,
    .legacy-label,
    .more-link,
    .less-link,
    .faq-item::after,
    .nav-link:hover,
    .nav-cta:hover,
    .menu-link:hover,
    .portfolio-card:hover .portfolio-content h3,
    .footer-nav a:hover,
    .contact-phone:hover,
    .contact-method:hover,
    .footer-legal a:hover,
    .owners-header-container .section-description {
        /* Temporarily disabled gold mask to fix visibility
        background-image: var(--gold-mask) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important; */
        color: var(--gold) !important;
    }
    
    /* Apply mask to gold underlines */
    .more-link,
    .less-link {
        border-bottom: none !important;
        position: relative;
    }
    
    .more-link::after,
    .less-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 1px;
        background-image: var(--gold-mask);
        background-size: 100% 100%;
        background-repeat: no-repeat;
    }
    
    /* Portfolio text lines styling */
    .portfolio-text-line {
        display: inline;
        transition: all 0.3s ease;
        font-size: inherit;
        line-height: inherit;
    }
    
    .portfolio-card:hover .portfolio-text-line {
        background-image: var(--gold-mask) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: var(--gold);
    }
    
    /* Apply Gold Mask to Gold Borders and Lines */
    .social-icon-link,
    .owner-card,
    .headline-bar,
    .owner-overlay h3::after {
        position: relative;
        overflow: hidden;
    }
    
    /* Gold gradient lines with mask - REMOVED */
    
    /* Social icon borders with mask */
    .social-icon-link {
        border: none !important;
        background-image: var(--gold-mask);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        -webkit-mask: radial-gradient(transparent calc(100% - 1px), #000 calc(100% - 1px));
        mask: radial-gradient(transparent calc(100% - 1px), #000 calc(100% - 1px));
    }
    
    .social-icon-link:hover {
        background: var(--gold-mask) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        -webkit-mask: none;
        mask: none;
    }
    
    /* Owner card borders with mask */
    .owner-card {
        border: none !important;
    }
    
    .owner-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: var(--gold-mask);
        background-size: 100% 100%;
        background-repeat: no-repeat;
        -webkit-mask: 
            linear-gradient(#fff 0 0) content-box, 
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask: 
            linear-gradient(#fff 0 0) content-box, 
            linear-gradient(#fff 0 0);
        mask-composite: exclude;
        padding: 1px;
        border-radius: 12px;
        pointer-events: none;
    }
    
    /* Headline bars with mask */
    .headline-bar {
        background-image: var(--gold-mask) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        background-color: transparent !important;
    }
    
    /* Apply gold mask to hover state on lines */
    .owner-overlay h3::after {
        background-image: var(--gold-mask) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
    }
    
    /* Global Performance Optimizations */
    html {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.8;
        color: var(--black);
        background: var(--black);
        font-weight: 400;
        overflow-x: hidden;
    }

    /* Button System */
    .btn {
        display: inline-block;
        padding: 15px 34px;
        background: transparent;
        color: var(--black);
        border: 2px solid var(--black);
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        border-radius: 50px;
    }

    .btn:hover {
        background: var(--black);
        color: var(--white);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .btn--large {
        padding: 0.5em 0.75em;
        font-size: 0.28em;
    }

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

    .btn--on-dark:hover {
        background: var(--white);
        color: var(--black);
    }

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

    .btn--light:hover {
        background: var(--black);
        color: var(--white);
    }

    /* Header */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: transparent;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .header.hide {
        transform: translateY(-100%);
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 3rem;
        max-width: 1400px;
        margin: 0 auto;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 2rem;
        position: relative;
    }

    .hamburger {
        width: 24px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        position: relative;
    }

    .hamburger span {
        width: 100%;
        height: 2px;
        background: var(--white);
        transition: all 0.3s ease;
    }

    .hamburger:hover span {
        background-image: var(--gold-mask) !important;
        background-size: 100% 100% !important;
        background-repeat: no-repeat !important;
        transition: background 0.15s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .logo-container {
        height: 40px;
        cursor: pointer;
        position: relative;
        display: inline-block;
    }
    
    .logo {
        height: 100%;
        width: auto;
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .logo-default {
        opacity: 1;
    }
    
    .logo-hover {
        opacity: 0;
    }
    
    .logo-container:hover .logo-default {
        opacity: 0;
    }
    
    .logo-container:hover .logo-hover {
        opacity: 1;
    }

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

    .nav-link {
        color: var(--white);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 100;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: color 0.15s ease;
    }

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

    .nav-cta {
        color: var(--white);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 100;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        transition: color 0.15s ease;
    }

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

    /* Menu Dropdown */
    .menu-dropdown {
        position: absolute;
        top: 80%;
        left: 3rem;
        background: transparent;
        padding: 0.25rem 0;
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .menu-dropdown.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .menu-link {
        display: block;
        color: var(--white);
        text-decoration: none;
        font-size: 1rem;
        font-weight: 100;
        letter-spacing: 0.1em;
        padding: 0.25rem 0;
        transition: color 0.15s ease;
    }

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

    /* Hero Section */
    .hero-container {
        position: relative;
        width: 100%;
        height: auto;
        overflow: hidden;
        background: var(--black);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 4vw;
    }

    .video-background {
        position: relative;
        width: 100%;
        height: auto;
        max-height: 100vh;
        object-fit: contain;
        z-index: 1;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, 
            rgba(0,0,0,0.95) 0%, 
            rgba(0,0,0,0.9) 10%, 
            rgba(0,0,0,0.8) 20%,
            rgba(0,0,0,0.6) 33%, 
            rgba(0,0,0,0.05) 60%, 
            rgba(0,0,0,0.1) 100%);
        z-index: 2;
    }

    .edward-jones-container {
        position: absolute;
        left: 5%;
        bottom: 12%;
        width: 35%;
        height: 60%;
        max-width: 700px;
        max-height: 75vh;
        z-index: 3;
    }

    .edward-jones-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom left;
        opacity: 0.9;
        filter: drop-shadow(0 0 20px rgba(0,0,0,0.3));
    }

    .hero-content {
        position: absolute;
        bottom: 12%;
        right: 5%;
        text-align: right;
        z-index: 10;
        color: var(--white);
        width: 45%;
        max-width: 45%;
        height: 60%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .hero-headline {
        font-family: 'EB Garamond', serif;
        font-size: 1.25em;
        font-weight: 700;
        line-height: 1.05;
        margin-bottom: 15px;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
        width: 100%;
    }

    .hero-subheadline {
        font-size: 0.35em;
        line-height: 1.6;
        margin: 0 0 15px 0;
        padding: 0;
        width: 100%;
        color: rgba(255,255,255,0.95);
        text-shadow: 1px 1px 3px rgba(0,0,0,0.9);
        font-weight: 300;
        text-align: right;
        display: block;
    }

    .hero-content .btn {
        margin: 0 !important;
        display: inline-block;
        padding: 15px 34px !important; /* Original padding restored */
        font-size: 12px !important; /* Original font size restored */
        height: auto;
    }

    /* About Section with fixed height */
    .about-section {
        position: relative;
        width: 100%;
        background-color: var(--black);
        overflow: hidden;
        height: 350px; /* Further reduced due to tighter text */
    }
    
    .about-container {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        /* Background image set via inline style in PHP template */
        background-size: auto 100%; /* Fixed height, auto width */
        background-position: right center;
        background-repeat: no-repeat;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 2rem 2%; /* Reduced horizontal padding for more width */
        box-sizing: border-box;
    }
    
    .about-text {
        position: relative;
        z-index: 2;
        width: 63.75% !important; /* 85% × 0.75 = 63.75% */
        max-width: none !important; /* Remove max-width constraint */
        padding: 1rem 1.5rem; /* Reduced vertical padding */
        background: rgba(0, 0, 0, 0.85); /* Semi-transparent background for text readability */
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        height: fit-content;
        max-height: 85%;
        overflow-x: visible; /* Show all content */
        overflow-y: auto; /* Allow vertical scrolling if needed */
    }

    .about-text h2 {
        font-family: 'EB Garamond', serif;
        font-size: 2.5rem !important;
        font-weight: 400;
        margin: 0 0 1rem 0 !important;
        line-height: 1;
        max-width: 90%;
        display: block !important;
        color: var(--white);
        flex-shrink: 0; /* Prevent shrinking */
    }

    .about-text .brand-name {
        font-family: 'Didot', serif !important;
        font-size: 3.125rem !important; /* 2.5rem * 1.25 = 3.125rem */
        color: var(--gold) !important;
        font-weight: 700 !important;
        line-height: 0.9 !important;
        display: block !important;
        margin: 0 0 0.2rem 0 !important; /* Tighter spacing */
        padding: 0 !important;
    }

    .about-text .brand-tagline {
        font-family: 'Avenir Next', sans-serif !important;
        font-weight: 400 !important;
        font-size: 1.125rem !important; /* 0.9rem * 1.25 = 1.125rem */
        letter-spacing: 0.15em !important;
        line-height: 1.2 !important;
        display: block !important;
        margin: 0 0 0.75rem 0 !important; /* Slightly increased spacing */
        color: var(--white) !important;
        text-transform: uppercase !important;
    }
    
    /* Text content wrapper for better control */
    .about-text-content {
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 0.75rem; /* Reduced gap for tighter spacing */
        width: 100%;
        max-width: 90%;
        overflow: hidden; /* Prevent content overflow */
        min-height: 0; /* Allow flexbox to properly shrink */
    }
    
    .about-text-body {
        flex: 1;
        display: flex;
        flex-direction: column;
        overflow: auto; /* Allow scrolling if content is too tall */
    }

    .about-text p {
        font-family: 'Inter', sans-serif !important;
        font-size: 1rem !important; /* 0.8rem * 1.25 = 1rem */
        line-height: 1.40625 !important; /* 1.125 * 1.25 = 1.40625 */
        color: rgba(255, 255, 255, 0.7) !important;
        margin: 0 0 0.3rem 0 !important; /* Even tighter spacing */
        max-width: 100% !important; /* Full width within expanded container */
        width: 100% !important; /* Full width */
        flex-shrink: 1; /* Allow shrinking if needed */
        /* outline: 2px solid yellow !important; - Removed for clarity */
    }

    .about-text .hidden-content {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s ease-out;
        flex-shrink: 1; /* Allow shrinking */
        width: 100%; /* Full width within container */
        /* outline: 3px solid magenta !important; - Removed for clarity */
    }


    .about-section.expanded {
        /* When expanded, increase height to accommodate content */
        height: auto;
        min-height: 350px;
    }
    
    .about-section.expanded .about-container {
        /* When expanded, allow container to grow with content */
        position: relative;
        min-height: 100%;
        background-size: auto 350px !important; /* Keep original height */
    }

    .about-section.expanded .about-text {
        /* Text remains absolutely positioned */
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .about-text .hidden-content.expanded {
        max-height: 500px; /* Reasonable height for content */
        opacity: 1;
        transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.6s ease-in 0.2s;
        overflow-y: auto; /* Allow scrolling if needed */
    }

    .more-link {
        display: inline;
        color: var(--gold) !important;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem !important;
        font-weight: 500;
        cursor: pointer;
        transition: opacity 0.3s ease;
        margin-left: 0.3em;
        position: relative;
    }

    .more-link:hover {
        opacity: 0.7;
        text-decoration: none;
    }

    .more-link.expanded {
        display: none;
    }

    .less-link {
        display: inline;
        color: var(--gold) !important;
        text-decoration: none;
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem !important;
        font-weight: 500;
        cursor: pointer;
        transition: opacity 0.3s ease;
        margin-left: 0.3em;
    }

    .less-link:hover {
        opacity: 0.7;
        text-decoration: none;
    }


    /* Removed fixed height - now using background image approach */

    .about-section .btn {
        color: var(--white) !important;
        border-color: var(--white) !important;
        background: transparent !important;
        flex-shrink: 0; /* Prevent button from shrinking */
        align-self: flex-start; /* Align to start */
        margin-top: 1rem !important; /* Reduced margin */
        padding: 10px 24px !important; /* Slightly reduced padding */
        font-size: 10px !important; /* Slightly smaller font */
        display: inline-block !important;
        text-decoration: none !important;
        border: 2px solid var(--white) !important;
        border-radius: 50px !important;
        transition: all 0.3s ease !important;
    }

    .about-section .btn:hover {
        background: var(--white) !important;
        color: var(--black) !important;
        transform: translateY(-2px);
    }


    /* REMOVED - Duplicate about-section styles consolidated above */
    
    /* Ensure content doesn't overflow */
    .about-text-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
        overflow-y: auto;
        padding-right: 1rem; /* Space for potential scrollbar */
    }
    
    /* Hide scrollbar but keep functionality */
    .about-text::-webkit-scrollbar,
    .about-text-wrapper::-webkit-scrollbar {
        width: 6px;
    }
    
    .about-text::-webkit-scrollbar-track,
    .about-text-wrapper::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .about-text::-webkit-scrollbar-thumb,
    .about-text-wrapper::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 55, 0.5);
        border-radius: 3px;
    }
    
    .about-text::-webkit-scrollbar-thumb:hover,
    .about-text-wrapper::-webkit-scrollbar-thumb:hover {
        background: rgba(212, 175, 55, 0.8);
    }

    /* Portfolio Section - Clean Structure */
    .portfolio-section {
        background: var(--white);
        margin: 0;
        padding: 25px 0 0 0;
    }
    
    .portfolio-spacer-1 { 
        height: 0;
    }
    
    .portfolio-spacer-2 { 
        height: 2vw;
    }
    
    .portfolio-spacer-3 { 
        height: 2vw;
    }
    
    .portfolio-title-container {
        text-align: center;
        margin: 0;
        padding: 0;
    }
    
    .portfolio-grid-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0;
    }

    .section-title {
        font-family: 'EB Garamond', serif;
        font-size: 3rem;
        font-weight: 400;
        text-align: center;
        color: var(--gold);
        margin: 0;
        padding: 0;
        line-height: 1;
        letter-spacing: 0.1em;
    }

    .portfolio-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
        margin: 0;
        padding: 0 2rem;
        max-width: 1400px;
        width: 100%;
        box-sizing: border-box;
    }

    .portfolio-card {
        position: relative;
        height: 450px;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    }

    .portfolio-image-wrapper {
        position: relative;
        width: 100%;
        height: 60%;
        overflow: hidden;
    }

    .portfolio-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .portfolio-card:hover img {
        transform: none;
    }

    .portfolio-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 40%;
        padding: 0.875rem 0.875rem;
        background: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
    }

    .portfolio-card:hover .portfolio-content {
        background: white;
    }

    .portfolio-content h3 {
        font-family: 'EB Garamond', serif;
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        margin: 0 0 0.5rem 0;
        color: var(--british-racing-green);
        transition: color 0.4s ease;
        text-transform: none;
        line-height: 1.3;
    }

    .portfolio-card:hover .portfolio-content h3 {
        color: var(--gold);
    }

    .portfolio-content p {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        line-height: 1.4;
        color: #555;
        margin: 0;
        transition: color 0.4s ease;
        font-weight: 400;
    }

    .portfolio-card:hover .portfolio-content p {
        color: #68411d;
    }

    /* Testimonials Section */
    .rebuilt-testimonials {
        background-color: var(--british-racing-green);
        padding: 0 0 80px 0;
        max-width: 1400px;
        margin: 0;
        position: relative;
    }


    .rebuilt-grid {
        display: flex;
        gap: 2.5rem;
        margin-top: 0;
        overflow: visible;
        position: relative;
        padding: 2rem 0;
        min-height: 400px;
        justify-content: center;
        align-items: center;
    }
    
    .rebuilt-carousel-track {
        display: flex;
        gap: 2.5rem;
        animation: scrollTestimonials 90s ease-in-out infinite;
        min-width: max-content;
        padding: 0 50%;
    }
    
    .play-pause-btn {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--black);
        color: var(--white);
        border: 2px solid var(--white);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 1.5rem;
        transition: all 0.3s ease;
        z-index: 10;
    }
    
    .play-pause-btn:hover {
        background: var(--white);
        color: var(--black);
        transform: translateX(-50%) scale(1.1);
    }
    
    .rebuilt-grid:hover .rebuilt-carousel-track {
        animation-play-state: paused;
    }
    
    @keyframes scrollTestimonials {
        0% { transform: translateX(0); }
        3% { transform: translateX(0); }
        6% { transform: translateX(-377.5px); }
        9% { transform: translateX(-377.5px); }
        12% { transform: translateX(-755px); }
        15% { transform: translateX(-755px); }
        18% { transform: translateX(-1132.5px); }
        21% { transform: translateX(-1132.5px); }
        24% { transform: translateX(-1510px); }
        27% { transform: translateX(-1510px); }
        30% { transform: translateX(-1887.5px); }
        33% { transform: translateX(-1887.5px); }
        36% { transform: translateX(-2265px); }
        39% { transform: translateX(-2265px); }
        42% { transform: translateX(-2642.5px); }
        45% { transform: translateX(-2642.5px); }
        48% { transform: translateX(-3020px); }
        51% { transform: translateX(-3020px); }
        54% { transform: translateX(-3397.5px); }
        57% { transform: translateX(-3397.5px); }
        60% { transform: translateX(-3775px); }
        63% { transform: translateX(-3775px); }
        66% { transform: translateX(-4152.5px); }
        69% { transform: translateX(-4152.5px); }
        72% { transform: translateX(-4530px); }
        75% { transform: translateX(-4530px); }
        78% { transform: translateX(-4907.5px); }
        81% { transform: translateX(-4907.5px); }
        84% { transform: translateX(-5285px); }
        87% { transform: translateX(-5285px); }
        90% { transform: translateX(-5662.5px); }
        93% { transform: translateX(-5662.5px); }
        96% { transform: translateX(-6040px); }
        100% { transform: translateX(-6417.5px); }
    }

    .rebuilt-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        min-height: 320px;
        display: flex;
        flex-direction: column;
        position: relative;
        flex: 0 0 337.5px;
        width: 337.5px;
    }

    .rebuilt-quote {
        position: absolute;
        top: 1.5rem;
        left: 2rem;
        font-size: 4rem;
        color: var(--gold);
        font-family: 'EB Garamond', serif;
        line-height: 0.8;
        opacity: 0.6;
    }

    .rebuilt-content {
        padding-top: 0.25rem;
        margin-top: 0.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .rebuilt-highlight {
        font-family: 'EB Garamond', serif;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.3;
        color: var(--british-racing-green);
        margin-bottom: 1rem;
    }

    .rebuilt-text {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem;
        line-height: 1.7;
        color: #555;
        flex: 1;
    }

    .rebuilt-author {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 0;
        padding: 0;
        border-top: 1px solid #eee;
    }

    .rebuilt-photo {
        width: 56px;
        height: 56px;
        border-radius: 12px;
        overflow: hidden;
        flex-shrink: 0;
        background: #f0f0f0;
        position: relative;
    }

    .rebuilt-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .rebuilt-info {
        flex: 1;
    }

    .rebuilt-name {
        font-family: 'EB Garamond', serif;
        font-size: 1.125rem;
        font-weight: 600;
        color: var(--british-racing-green);
        margin: 0;
        line-height: 1.2;
    }

    .rebuilt-member {
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        color: var(--gold);
        margin: -0.125rem 0 0 0;
        letter-spacing: 0.02em;
        line-height: 1.3;
    }

    /* Article Carousel Section */
    .article-carousel-section {
        background: var(--white);
        padding: 0;
        margin: 0;
        height: 300px; /* Reduced by 50% */
        overflow: hidden;
        position: relative;
    }

    .article-carousel {
        display: flex;
        gap: 0;
        padding: 0;
        height: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
    }
    
    .article-carousel::-webkit-scrollbar {
        display: none;
    }

    .article-card {
        flex: 0 0 300px; /* Reduced width for shorter height */
        height: 100%;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        /* No margins or padding as requested */
    }

    .article-card::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to bottom, transparent 0%, white 50%);
        z-index: 1;
    }

    .article-genre {
        position: absolute;
        top: 15px;
        left: 15px;
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--white);
        background: rgba(0, 0, 0, 0.5);
        padding: 4px 12px;
        border-radius: 20px;
        z-index: 2;
    }

    .article-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 20px 10px 20px;
        z-index: 2;
    }

    .article-hook {
        font-family: 'EB Garamond', serif;
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 4px;
        color: var(--black);
    }

    .article-intro {
        font-family: 'Inter', sans-serif;
        font-size: 0.813rem;
        line-height: 1.4;
        color: rgba(0, 0, 0, 0.7);
    }

    /* Full Width Feature Carousel */
    .feature-carousel-section {
        background: var(--black);
        height: 320px; /* Reduced by 20% from 400px */
        overflow: hidden;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .feature-carousel-container {
        position: relative;
        height: 100%;
        width: 100%;
    }

    .feature-carousel {
        display: flex;
        height: 100%;
        transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .feature-card {
        flex: 0 0 100%; /* Full page width */
        height: 100%;
        display: flex;
        position: relative;
        background-size: auto 100%;
        background-position: right center;
        background-repeat: no-repeat;
    }

    .feature-image {
        width: 25%;
        height: 100%;
        background-size: 56.25%; /* Reduced by 25% from 75% */
        background-position: center center;
        background-repeat: no-repeat;
        background-color: var(--black);
        opacity: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0.95);
        transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    }
    
    .feature-card.active .feature-image {
        opacity: 0.75;
        transform: scale(1);
    }

    .feature-content {
        width: 50%;
        height: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        color: var(--white);
        position: relative;
        background: transparent;
    }
    
    .feature-top-section {
        height: 25%;
        position: relative;
        display: flex;
        align-items: flex-end;
        padding: 0 48px 10px 0; /* Removed left padding */
        background: transparent;
    }
    
    .feature-middle-section {
        height: 50%;
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 48px 0 0; /* Removed left padding */
        background: transparent;
    }
    
    .feature-bottom-section {
        height: 25%;
        position: relative;
        display: flex;
        align-items: center;
        padding: 0 48px 0 0; /* Removed left padding */
        background: transparent;
    }

    .feature-title {
        font-family: 'EB Garamond', serif;
        font-size: 1.8rem; /* Reduced by 20% from 2.25rem */
        font-weight: 400;
        line-height: 1.1;
        margin: 0;
        color: var(--gold);
        opacity: 0;
        transform: translateY(20px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s;
    }
    
    .feature-card.active .feature-title {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-description {
        font-family: 'Inter', sans-serif;
        font-size: 0.9rem; /* Reduced by 20% from 1.125rem */
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
        max-width: 400px; /* Reduced by 20% from 500px */
        opacity: 0;
        transform: translateY(20px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.7s;
    }
    
    .feature-card.active .feature-description {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-cta {
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem; /* Reduced by 20% from 0.875rem */
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--gold);
        text-decoration: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s;
    }
    
    .feature-card.active .feature-cta {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-cta:hover {
        opacity: 0.7;
    }

    .feature-background {
        width: 25%;
        height: 100%;
        background-size: cover;
        background-position: right center;
        background-repeat: no-repeat;
        opacity: 0;
        display: none;
    }

    /* Carousel Navigation */
    .feature-nav {
        position: absolute;
        bottom: 32px; /* Reduced by 20% from 40px */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px; /* Reduced by 20% from 10px */
        z-index: 10;
    }

    .feature-dot {
        width: 8px; /* Reduced by 20% from 10px */
        height: 8px; /* Reduced by 20% from 10px */
        border-radius: 50%;
        border: 1.6px solid var(--white); /* Reduced by 20% from 2px */
        background: transparent;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0.7;
    }

    .feature-dot.active {
        background: var(--white);
        opacity: 1;
    }
    
    /* Play/Pause Button */
    .feature-play-pause {
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 10;
    }
    
    .play-pause-btn {
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 8px; /* Reduced by 20% from 10px */
        width: 14.4px; /* Reduced by 20% from 18px */
        height: 14.4px; /* Reduced by 20% from 18px */
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        outline: none;
    }
    
    .play-pause-btn:hover,
    .play-pause-btn:focus,
    .play-pause-btn:active {
        background: transparent !important;
        border: none !important;
        color: var(--white) !important;
        outline: none !important;
        box-shadow: none !important;
        width: 14.4px !important;
        height: 14.4px !important;
        font-size: 8px !important;
    }
    

    /* Brand Carousel */
    .brand-carousel-section {
        background: #ffffff;
        padding: 0.5rem 0;
        margin: 0;
        position: relative;
    }
    
    .brand-carousel-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(to right, 
            transparent 0%, 
            #000 30%, 
            #000 70%, 
            transparent 100%);
    }

    .brand-carousel {
        padding: 0.5rem 0;
        background: white;
        overflow: hidden;
    }

    .brand-track {
        display: flex;
        gap: 5rem;
        animation: scroll-brands 60s linear infinite;
        min-width: max-content;
    }

    @keyframes scroll-brands {
        from {
            transform: translateX(0);
        }
        to {
            transform: translateX(-50%);
        }
    }

    .brand-item {
        flex: 0 0 auto;
        width: 100px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .brand-item img {
        filter: brightness(0) grayscale(100%);
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }
    
    /* Pseudo-random opacity pattern using prime numbers */
    .brand-item:nth-child(2n) img { opacity: 0.4; }
    .brand-item:nth-child(3n) img { opacity: 0.6; }
    .brand-item:nth-child(5n) img { opacity: 0.8; }
    .brand-item:nth-child(7n) img { opacity: 1; }
    .brand-item:nth-child(11n) img { opacity: 0.3; }
    .brand-item:nth-child(13n) img { opacity: 0.9; }
    .brand-item:nth-child(17n) img { opacity: 0.5; }
    .brand-item:nth-child(19n) img { opacity: 0.7; }
    .brand-item:nth-child(23n) img { opacity: 0.95; }
    .brand-item:nth-child(4n+1) img { opacity: 0.65; }
    .brand-item:nth-child(8n+3) img { opacity: 0.45; }
    .brand-item:nth-child(9n+2) img { opacity: 0.85; }

    .brand-item:hover img {
        transform: scale(1.1);
        opacity: 1;
    }

    /* FAQ Section */
    .faq-section {
        background: var(--white);
        padding: 1.5rem 0 1.5rem 0;
    }
    
    .faq-header {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .faq-headline-image {
        height: 3rem;
        width: auto;
    }
    

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

    .faq-item {
        border-bottom: 1px solid #eee;
        margin-bottom: 0;
        font-family: 'EB Garamond', serif;
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--british-racing-green);
        padding: 0.5rem;
        cursor: pointer;
        position: relative;
        transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1),
                    padding 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        text-align: left;
        min-height: 40px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        will-change: background-color;
    }
    
    .faq-item:last-child {
        border-bottom: none;
    }

    .faq-item::after {
        content: '+';
        position: absolute;
        right: 0;
        top: 0.5rem;
        font-size: 1.5rem;
        color: var(--gold);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }

    .faq-item.active::after {
        transform: rotate(45deg);
    }
    
    .faq-item:hover {
        background-color: rgba(212, 175, 55, 0.05);
    }
    
    .faq-item:hover::after {
        transform: scale(1.1);
    }
    
    .faq-item.active:hover::after {
        transform: rotate(45deg) scale(1.1);
    }

    .faq-answer {
        overflow: hidden;
        padding: 0;
        margin: 0;
        width: 100%;
        position: relative;
        transform-origin: top;
        opacity: 0;
        max-height: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: opacity, max-height;
    }

    .faq-item.active .faq-answer {
        opacity: 1;
        max-height: 300px;
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }

    .faq-answer p {
        padding: 0;
        margin: 0;
        font-size: 1rem;
        line-height: 1.7;
        color: #666;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Owners Collective Section */
    .owners-collective-section {
        background: var(--black);
        padding: 1rem 0 1rem 0;
        text-align: center;
        color: var(--white);
        position: relative;
        margin-bottom: 3px;
    }
    
    .owners-collective-section::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(to right, 
            transparent 0%, 
            #77522e 30%, 
            #77522e 70%, 
            transparent 100%);
    }

    .owners-header-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 1rem;
        padding: 0 2rem;
        height: auto;
    }
    
    .owners-collective-header {
        max-width: 67%;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    
    .owners-text-wrapper {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 0;
        margin: 0;
        line-height: 1;
    }
    
    .owners-header-container .section-title {
        text-align: center;
        margin: 0;
        padding: 0;
        line-height: 1;
        white-space: nowrap;
        display: block;
    }
    
    .owners-header-container .section-description {
        text-align: center;
        margin: 0.5rem 0 0 0 !important;
        padding: 0;
        line-height: 1;
        font-size: 0.9rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }
    
    .z-logo {
        width: auto;
        height: 3rem;
        margin: 0;
        display: block;
        object-fit: contain;
    }

    .section-description {
        font-size: 1.2rem;
        color: var(--gold);
        margin-bottom: 1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .section-subdescription {
        font-size: 1rem;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.7);
        max-width: 1020px;
        margin: 0 auto 1rem;
    }

    .owners-carousel {
        max-width: 1400px;
        margin: 0 auto 1rem;
        padding: 0 2rem;
    }

    .owners-track {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: nowrap;
        padding: 0;
        margin: 0;
    }

    .owner-card {
        position: relative;
        width: 175px;
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    border-color 0.3s ease;
        border: 1px solid var(--gold);
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
        flex: 1;
        max-width: 190px;
    }

    .owner-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
        border-color: var(--white);
    }

    .owner-card-visual {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .owner-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .owner-card:hover img {
        transform: scale(1.1);
    }

    .owner-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 0.95) 0%, 
            rgba(0, 0, 0, 0.7) 50%, 
            transparent 100%);
        padding: 2rem 0.75rem 1.25rem;
        color: white;
        transition: all 0.5s ease;
    }

    .owner-card:hover .owner-overlay {
        background: linear-gradient(to top, 
            rgba(0, 0, 0, 1) 0%, 
            rgba(0, 0, 0, 0.8) 60%, 
            transparent 100%);
        padding-bottom: 2.5rem;
    }

    .owner-overlay h3 {
        font-family: 'EB Garamond', serif;
        font-size: 1rem;
        font-weight: 400;
        letter-spacing: 0.05em;
        margin: 0;
        text-transform: uppercase;
        position: relative;
        transition: all 0.3s ease;
        line-height: 1.2;
    }

    .owner-card:hover .owner-overlay h3 {
        color: var(--gold);
        transform: translateY(-5px);
    }

    .owner-overlay h3::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
    }

    .owner-card:hover .owner-overlay h3::after {
        width: 100%;
    }

    .owner-overlay h3::before {
        content: '|more|';
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 0.7rem;
        color: var(--gold);
        opacity: 0;
        transition: opacity 0.3s ease;
        font-weight: 300;
        letter-spacing: 0.1em;
    }

    .owner-card:hover .owner-overlay h3::before {
        opacity: 1;
    }

    /* WhatsApp Float */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: transparent;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
        z-index: 1000;
    }

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

    .whatsapp-icon {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    /* Footer */
    .luxury-footer {
        background: var(--black);
        color: var(--white);
        border-top: none;
    }
    
    /* Target specific columns for smaller text - NOT column 3 */
    /* COMMENTED OUT - Removing forced 0.3rem font size
    .luxury-footer .footer-column:nth-child(1) *,
    .luxury-footer .footer-column:nth-child(2) *,
    .luxury-footer .footer-column:nth-child(4) *,
    .luxury-footer .footer-column:nth-child(5) * {
        font-size: 0.3rem !important;
    }
    */
    
    /* Exceptions for specific elements that need different sizes */
    .luxury-footer .footer-headline {
        font-size: 1.8rem !important;
    }
    
    .luxury-footer .footer-column-title {
        font-size: 1rem !important;
    }
    
    .luxury-footer .legacy-label {
        font-size: 1rem !important;
    }
    
    .luxury-footer .newsletter-title {
        font-size: 1.5rem !important;
    }
    
    .luxury-footer .pillar {
        font-size: 0.72rem !important;
    }
    
    /* Ensure column 3 (brand description) maintains its original size */
    .luxury-footer .footer-column:nth-child(3),
    .luxury-footer .footer-column:nth-child(3) * {
        font-size: inherit !important;
    }
    
    .luxury-footer .footer-column:nth-child(3) .brand-description,
    .luxury-footer .footer-column:nth-child(3) p {
        font-size: 0.85rem !important;
    }
    
    /* Newsletter form elements keep their sizes */
    .luxury-footer .new-newsletter-copy {
        font-size: 0.85rem !important;
    }
    
    .luxury-footer .new-newsletter-input {
        font-size: 0.8rem !important;
    }
    
    .luxury-footer .new-newsletter-btn {
        font-size: 9px !important;
    }
    
    /* Pillar dot keeps its size */
    .luxury-footer .pillar-dot {
        font-size: 0.9rem !important;
    }
    
    /* Footer badge image keeps its dimensions */
    .luxury-footer .footer-badge img {
        width: 40px !important;
        height: 40px !important;
    }


    .footer-hero {
        text-align: center;
        padding: 0 0 0.75rem 0;
        margin: 1rem 0 0 0;
        position: relative;
    }
    
    .footer-hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        height: 3px;
        background: linear-gradient(to right, 
            transparent 0%, 
            #77522e 30%, 
            #77522e 70%, 
            transparent 100%);
    }

    .footer-headline-wrapper {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.2rem;
        margin: 0;
        padding: 0;
    }

    .headline-bar {
        width: 120px;
        height: 1px;
        background: linear-gradient(to right, transparent 0%, var(--gold) 50%, transparent 100%);
    }
    
    .headline-bar:first-child {
        background: linear-gradient(to left, transparent 0%, var(--gold) 50%, transparent 100%);
    }

    .footer-headline {
        font-family: 'EB Garamond', serif;
        font-size: 1.8rem;
        font-weight: 400;
        letter-spacing: 0.2em;
        color: var(--gold);
        margin: 0;
        padding: 0;
        line-height: 1;
    }

    .footer-pillars {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.2rem;
        margin: 0;
        padding: 0;
    }

    .pillar {
        font-size: 0.72rem;
        font-weight: 300;
        letter-spacing: 0.1em;
        color: var(--white);
        line-height: 1;
    }

    .pillar-dot {
        color: var(--gold);
        font-size: 0.9rem;
    }


    .footer-main {
        padding: 0;
        margin-top: 0.5rem;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: max-content max-content 1fr max-content max-content; /* Column 1: no wrap, Columns 2,4,5: minimal width, Column 3: maximum space */
        gap: 2rem;
        margin-bottom: 2rem;
        position: relative;
        width: 100%;
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
        align-items: start;
    }
    
    
    

    .luxury-footer .footer-brand {
        max-width: 280px;
    }

    .footer-logo {
        width: 37.5px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .luxury-footer .brand-description {
        font-size: 0.85rem !important; /* Restored original size */
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.7);
        margin-top: 1rem;
        margin-bottom: 1rem;
        font-style: italic;
    }
    
    .luxury-footer .footer-brand-description {
        grid-column: 1 / 3; /* Span first 2 columns */
        margin-top: 2rem;
        padding: 0;
    }
    
    .luxury-footer .footer-brand-description-content {
        font-size: 0.85rem !important; /* Restored original size */
        line-height: 1.4;
        color: rgba(255, 255, 255, 0.7);
        font-style: italic;
        width: 100%; /* Use full width of the spanned columns */
    }

    .trust-indicators {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 0.5rem; /* Reduced gap for tighter fit */
        line-height: 1.2;
        margin-bottom: 0.2rem;
    }

    .trust-icon {
        width: 20px;
        height: 20px;
        color: var(--gold);
    }

    .trust-icon-img {
        width: 20px;
        height: 20px;
        display: block;
        object-fit: contain;
    }

    .trust-label {
        font-size: 0.3rem !important;
        color: rgba(255, 255, 255, 0.7);
    }

    .footer-column-title {
        font-family: 'EB Garamond', serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--gold);
        margin: 0;
        padding: 0;
        height: 0;
        overflow: hidden;
    }

    .footer-nav {
        list-style: none;
        line-height: 1.2;
        padding: 0;
        margin: 0;
    }

    .footer-nav li {
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    
    /* Ensure footer columns have consistent sizing */
    .footer-column {
        min-width: 180px;
    }
    
    /* Special styling for columns 1, 2, 4, 5 to have optimal widths */
    .footer-grid > .footer-column:nth-child(1) {
        width: auto; /* Let max-content from grid handle sizing */
        min-width: auto; /* Override the default min-width to allow tighter fitting */
        padding: 0; /* Remove any padding */
        flex-shrink: 0;
        white-space: nowrap; /* Prevent text wrapping */
    }
    
    /* Ensure links in column 1 don't wrap */
    .footer-grid > .footer-column:nth-child(1) .footer-nav li a {
        white-space: nowrap;
        display: inline-block;
    }
    
    .footer-grid > .footer-column:nth-child(2),
    .footer-grid > .footer-column:nth-child(4),
    .footer-grid > .footer-column:nth-child(5) {
        width: auto; /* Let grid handle sizing */
        min-width: auto; /* Remove minimum to allow max-content to work properly */
        flex-shrink: 0;
    }
    
    /* Special styling for the brand description column (3rd column) */
    .footer-grid > .footer-column:nth-child(3) {
        display: flex;
        justify-content: center;
        align-items: center;
        min-width: auto;
        width: auto;
        flex: 1; /* Take up remaining space */
        max-width: 600px; /* Increased max-width for more content space */
    }

    .footer-nav a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.3rem !important;
        transition: color 0.3s ease;
        display: block;
        padding: 0.1rem 0;
    }
    
    /* Reduce font size by 25% for columns 1, 2, 4, and 5 */
    .footer-grid > .footer-column:nth-child(1) .footer-nav a,
    .footer-grid > .footer-column:nth-child(2) .footer-nav a,
    .footer-grid > .footer-column:nth-child(4) .footer-nav a,
    .footer-grid > .footer-column:nth-child(5) .footer-nav a {
        font-size: 0.3rem !important;
    }
    
    /* Also reduce font size for any other text in column 1 */
    .footer-grid > .footer-column:nth-child(1) span {
        font-size: 0.3rem !important;
    }

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

    .footer-contact {
        text-align: left;
    }
    
    /* Consistent spacing for contact column items */
    .footer-contact .footer-column-title {
        margin-bottom: 0.2rem;
    }
    
    .footer-contact .contact-phone {
        margin-bottom: 0.2rem;
    }
    
    .footer-contact .contact-method {
        margin-bottom: 0.2rem;
    }
    
    .footer-contact .footer-logo {
        margin-bottom: 0;
        margin-top: 0.5rem;
    }
    
    .footer-contact .legacy-number {
        margin-bottom: 0;
    }

    .contact-primary {
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .contact-phone {
        display: block;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
        transition: color 0.3s ease;
    }

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

    .phone-label {
        font-size: 0.3rem !important;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 0.1rem;
    }

    .phone-number {
        font-size: 0.3rem !important;
        font-weight: normal;
        color: rgba(255, 255, 255, 0.7);
    }

    .contact-methods {
        margin-bottom: 0.5rem;
        margin-top: 0.5rem;
    }

    .contact-method {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.3rem !important;
        transition: color 0.3s ease;
        line-height: 1.2;
    }

    .contact-method:hover {
        color: var(--gold);
    }

    .legacy-number {
        padding: 0.5rem;
        margin-top: 0;
        border-radius: 8px;
        text-align: center;
    }

    .legacy-label {
        font-family: 'EB Garamond', serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--gold);
        margin: 0 0 0.5rem 0;
        line-height: 1.2;
    }

    .legacy-login {
        font-size: 0.3rem !important;
        color: rgba(255, 255, 255, 0.7);
        font-style: italic;
        margin: 0;
        line-height: 1.2;
        text-decoration: underline;
    }

    .newsletter-wrapper {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        padding: 1rem;
        width: fit-content;
        min-width: 330px;
    }
    
    .footer-newsletter {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 1rem 0;
        border-top: 1.25px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1.25px solid rgba(255, 255, 255, 0.1);
        width: 125%;
        margin-left: -12.5%;
    }

    .newsletter-content {
        flex: 0 0 auto;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .newsletter-title {
        font-family: 'EB Garamond', serif;
        font-size: 1.5rem;
        font-weight: 600;
        color: var(--gold);
        margin: 0;
        line-height: 1.2;
    }
    
    .newsletter-title-image {
        width: 250px;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    .newsletter-description {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        margin-top: 0.75rem;
    }

    .newsletter-form-wrapper {
        flex: 0 0 auto;
        text-align: left;
        padding: 0;
    }

    .newsletter-form-title {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 1rem;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
    }

    .newsletter-input {
        width: 100%;
        min-width: 330px;
        padding: 0.375rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        border-radius: 4px;
        font-size: 0.8rem;
    }

    .newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .newsletter-form .btn {
        padding: 7.5px 17px;
        font-size: 11px;
        width: 67%;
    }

    .newsletter-subtitle {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.7);
        font-style: italic;
    }

    /* New Newsletter Section Styles */
    .new-newsletter-wrapper {
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .new-newsletter-container {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .new-newsletter-content {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .new-newsletter-user-image {
        flex: 0 0 auto;
    }

    .user-image {
        width: 300px;
        height: auto;
        object-fit: cover;
        border-radius: 8px;
    }

    .new-newsletter-right {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding-left: 3rem;
    }

    .new-newsletter-top-row {
        display: flex;
        gap: 2rem;
        margin-bottom: 0;
        align-items: stretch;
        justify-content: flex-start;
        height: 60%;
    }

    .new-newsletter-left {
        flex: 0 0 auto;
        text-align: left;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 0 !important;
        margin: 0 !important;
    }


    .new-newsletter-title-image {
        width: 684px;
        height: auto;
        object-fit: contain;
        margin: 0 !important;
        padding: 0 !important;
    }

    .new-newsletter-copy {
        font-size: 0.85rem;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.2;
        margin: 0;
        font-family: 'Inter', sans-serif;
    }

    .new-newsletter-bottom-row {
        display: flex;
        justify-content: flex-start;
    }

    .new-newsletter-form-container {
        width: 684px;
        text-align: center;
    }

    .new-newsletter-form {
        display: flex;
        gap: 0.75rem;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
        margin: 0 auto;
        max-width: 500px;
    }

    .new-newsletter-input {
        flex: 1.25;
        min-width: 294px;
        padding: 9px 15px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        border-radius: 4px;
        font-size: 0.8rem;
        height: 32px;
        box-sizing: border-box;
    }

    .new-newsletter-input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

    .new-newsletter-btn {
        display: inline-block;
        padding: 9px 22px;
        background: transparent;
        color: var(--white);
        border: 2px solid var(--white);
        font-family: 'Inter', sans-serif;
        font-size: 9px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        border-radius: 50px;
        height: 32px;
        box-sizing: border-box;
    }

    .new-newsletter-btn:hover {
        background: var(--white);
        color: var(--black);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
        .new-newsletter-top-row {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .new-newsletter-right {
            text-align: center;
        }

        .new-newsletter-form {
            flex-direction: column;
            gap: 1rem;
        }

        .new-newsletter-input {
            min-width: 100%;
        }
        
        /* Responsive footer grid for mobile */
        .footer-grid {
            grid-template-columns: 1fr !important;
            gap: 1rem;
        }
        
        .footer-grid > .footer-column:nth-child(1),
        .footer-grid > .footer-column:nth-child(2),
        .footer-grid > .footer-column:nth-child(4),
        .footer-grid > .footer-column:nth-child(5) {
            width: 100% !important;
            white-space: normal !important;
        }
        
        .footer-grid > .footer-column:nth-child(1) .footer-nav li a {
            white-space: normal !important;
        }
        
        .footer-grid > .footer-column:nth-child(3) {
            max-width: 100% !important;
        }
    }

    .footer-bottom {
        position: relative;
        padding: 0 0 2rem 0;
    }

    .footer-bottom-content {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .footer-badge {
        display: flex;
        align-items: center;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        background: var(--black);
        padding: 0 10px;
    }
    
    .legal-badge-wrapper {
        padding: 0.5rem 1rem;
        position: relative;
        margin-top: 0;
        margin-bottom: 0.5rem;
        line-height: 1;
        height: 50px;
    }
    
    .legal-badge-wrapper > div {
        line-height: 1;
        margin: 0;
        padding: 0;
        height: 100%;
    }

    .footer-badge img {
        width: 40px;
        height: 40px;
    }

    .footer-legal-section {
        width: 100%;
        position: relative;
        z-index: 1;
        margin-bottom: 0.5rem;
    }

    .footer-legal {
        display: flex;
        align-items: center;
        gap: 2rem;
        margin-bottom: 0;
    }

    .footer-legal a {
        color: #666;
        text-decoration: none;
        font-size: 0.75rem !important;
        transition: color 0.3s ease;
    }

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

    .security-badges {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .security-badge {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.75rem !important;
    }

    /* Footer Description Styling */
    .footer-description {
        text-align: center;
        padding: 0 1rem;
    }
    
    .footer-description-text {
        font-size: 0.875rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        font-style: italic;
        margin: 0;
    }
    
    .footer-column-title {
        font-family: 'EB Garamond', serif;
        font-size: 1.125rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--white);
        letter-spacing: 0.02em;
    }
    
    .footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    
    .footer-nav a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.875rem;
        line-height: 1.6;
        transition: color 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .footer-nav a:hover {
        color: var(--white);
    }
    
    /* Responsive adjustments for About Section */
    @media (max-width: 768px) {
        .about-section {
            background-position: center top;
            background-size: cover;
            height: auto;
            min-height: 500px;
        }
        
        .about-text {
            max-width: 100%;
            background: rgba(0, 0, 0, 0.85);
            padding: 2rem;
            border-radius: 8px;
            margin-top: 200px; /* Space for background image */
        }
        
        .about-text h2 {
            font-size: 2rem;
            color: var(--white);
        }
        
        .about-text p {
            font-size: 0.95rem;
            color: var(--white);
        }
    }
    
    /* Responsive Design - Modified for proportional scaling */
    /* Removed grid breakpoints to maintain proportional scaling */
    
    /* About Section with Background Image - CONSOLIDATED */
    .about-section {
        /* Background image handled by .about-container */
        background-color: var(--black);
        /* height: 337.5px; - Removed conflicting height */
        position: relative;
        padding: 0;
        margin: 0;
        overflow: hidden;
        display: flex;
        align-items: stretch;
    }
    
    .about-section .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 2rem;
        height: 100%;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    /* Override conflicting styles */
    .about-text {
        max-width: 63.75% !important; /* Reduced by 25% from 85% */
        width: 63.75% !important; /* Reduced by 25% from 85% */
        padding: 2rem 3rem 2rem 0 !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        background: transparent !important;
        overflow: hidden !important;
        max-height: none !important;
    }
    
    /* Ensure no scrollbar in default state */
    .about-section:not(.expanded) .about-text {
        overflow: hidden !important;
    }
    
    /* Fix for hero-section if it exists */
    .hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/familyimage.JPG') !important;
        background-color: transparent !important;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    /* Ensure hero content is visible */
    .hero-section * {
        color: inherit !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Also fix hero-container if that's what's being used */
    .hero-container.hero-section {
        background-image: url('<?php echo get_template_directory_uri(); ?>/assets/images/familyimage.JPG') !important;
        background-color: transparent !important;
    }
    
    /* Remove any white background that might be hiding elements */
    .hero-section, .hero-container {
        background-color: transparent !important;
    }
    
    /* Ensure all hero elements are visible */
    .hero-headline, .hero-subheadline, .hero-content .btn {
        opacity: 1 !important;
        visibility: visible !important;
    }
    </style>
    <style>
    /* Interactive Article Carousel Styles */
    .interactive-article-carousel-section {
        background: var(--white);
        padding: 0;
        margin: 0;
        height: 300px;
        position: relative;
        overflow: hidden;
    }
    
    .interactive-article-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .interactive-article-track {
        display: flex;
        height: 100%;
        position: relative;
        transition: none;
    }
    
    .interactive-article-card {
        min-width: 300px;
        height: 100%;
        position: relative;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        overflow: hidden;
        flex-shrink: 0;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .interactive-article-card:hover {
        transform: scale(1.02);
    }
    
    .interactive-article-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 50%;
        background: linear-gradient(to bottom, 
            transparent 0%, 
            rgba(255, 255, 255, 0.7) 50%, 
            rgba(255, 255, 255, 1) 100%);
        z-index: 1;
    }
    
    .interactive-article-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px 20px 10px 20px;
        z-index: 2;
    }
    
    .interactive-article-hook {
        font-family: 'EB Garamond', serif;
        font-size: 1.25rem;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 4px;
        color: var(--black);
    }
    
    .interactive-article-intro {
        font-family: 'Inter', sans-serif;
        font-size: 0.813rem;
        line-height: 1.4;
        color: rgba(0, 0, 0, 0.7);
    }
    
    /* Article Popup Styles */
    .article-popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.9);
        z-index: 10000;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        backdrop-filter: blur(5px);
    }
    
    .article-popup {
        background: var(--white);
        max-width: 600px;
        width: 90%;
        max-height: 85vh;
        height: 85vh;
        border-radius: 0;
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    }
    
    .article-popup-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        font-size: 28px;
        cursor: pointer;
        z-index: 10;
        color: var(--black);
        line-height: 1;
        padding: 5px;
        transition: all 0.3s ease;
        width: 30px;
        height: 30px;
        text-align: center;
    }
    
    .article-popup-close:hover {
        transform: rotate(90deg);
        color: var(--gold);
    }
    
    .article-popup-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        opacity: 0.25;
        z-index: 1;
    }
    
    .article-popup-image::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 25%;
        background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 1) 60%);
        z-index: 2;
    }
    
    .article-popup-content {
        position: relative;
        z-index: 2;
        padding: 60px;
        height: 100%;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }
    
    .article-popup-title {
        font-family: 'EB Garamond', serif;
        font-size: 2.5rem;
        font-weight: 500;
        line-height: 1.2;
        margin-bottom: 10px;
        color: var(--black);
    }
    
    .article-popup-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 1.125rem;
        font-weight: 400;
        line-height: 1.4;
        color: rgba(0, 0, 0, 0.7);
        margin-bottom: 30px;
    }
    
    .article-popup-body {
        flex: 1;
    }
    
    .article-popup-body p {
        font-family: 'EB Garamond', serif;
        font-size: 1.125rem;
        line-height: 1.8;
        margin-bottom: 20px;
        color: rgba(0, 0, 0, 0.85);
    }
    
    .article-read-more {
        font-family: 'Inter', sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        color: var(--gold);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .article-read-more:hover {
        color: var(--black);
        text-decoration: underline;
    }
    
    .article-popup-newsletter {
        width: 100%;
        max-width: 200px;
        margin: 30px auto 0;
        display: block;
    }
    
    @media (max-width: 768px) {
        .article-popup {
            max-width: 95%;
            height: 90vh;
            max-height: 90vh;
        }
        
        .article-popup-content {
            padding: 40px 30px;
        }
        
        .article-popup-title {
            font-size: 2rem;
        }
    }
    </style>
    <style>
        .testimonials-v2 {
            background: var(--black);
            padding: 0 0 30px 0;
            overflow: visible;
        }
        
        .testimonials-v2-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .testimonials-v2-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 30px;
            row-gap: 0;
            position: relative;
            padding-bottom: 0;
            margin-bottom: 0;
        }
        
        .testimonial-v2-card {
            background: var(--black);
            border-radius: 16px;
            padding: 30px 30px 20px 30px;
            position: relative;
            transition: opacity 0.4s ease, transform 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
            min-height: 320px;
        }
        
        .testimonial-v2-card.showing {
            opacity: 1;
            transform: translateY(0);
        }
        
        .testimonial-v2-card.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
        }
        
        .quote-mark-v2 {
            position: absolute;
            top: 10px;
            left: 25px;
            font-size: 40px;
            color: var(--gold);
            font-family: 'EB Garamond', serif;
            opacity: 0.5;
            line-height: 1;
        }
        
        .testimonial-v2-content {
            margin-top: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .testimonial-v2-title {
            font-family: 'EB Garamond', serif;
            font-size: 1.25rem;
            color: var(--white);
            margin-bottom: 10px;
            font-weight: 500;
            line-height: 0.9 !important;
        }
        
        .quote-only {
            color: #854e1c;
            font-size: 40px;
        }
        
        .testimonial-v2-text {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.2;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            flex: 1;
        }
        
        .testimonial-v2-footer {
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 1.5rem;
        }
        
        .testimonial-v2-member {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--gold);
            font-style: italic;
            line-height: 1.0;
        }
        
        .testimonial-v2-location {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: var(--white);
            font-weight: 600;
            margin-top: 4px;
            opacity: 0.9;
            line-height: 1.0;
        }
        
        
        
        .testimonials-v2-button-wrapper {
            text-align: center;
            margin-top: 10px;
        }
        
        .testimonials-v2-wrapper.expanded + .testimonials-v2-button-wrapper {
            margin-top: 15px;
        }
        
        .testimonials-v2-toggle {
            display: inline-block;
            padding: 15px 34px;
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 50px;
        }
        
        .testimonials-v2-toggle:hover {
            background: var(--white);
            color: var(--black);
            transform: translateY(-2px);
        }
        
        /* Animation helpers */
        .testimonials-v2-wrapper {
            position: relative;
            overflow: hidden;
            transition: max-height 0.6s ease;
            max-height: 350px;
            margin-bottom: 0;
        }
        
        .testimonials-v2-wrapper.expanded {
            max-height: 2000px;
        }
        
        .testimonials-v2-grid {
            position: relative;
        }
        
        /* Simple stagger for cards */
        .testimonial-v2-card:nth-child(4),
        .testimonial-v2-card:nth-child(7) { transition-delay: 0s; }
        
        .testimonial-v2-card:nth-child(5),
        .testimonial-v2-card:nth-child(8) { transition-delay: 0.1s; }
        
        .testimonial-v2-card:nth-child(6),
        .testimonial-v2-card:nth-child(9) { transition-delay: 0.2s; }
        
