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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            font-weight: 400;
        }

        /* Foundation-style Breakpoints */
        /* Small: 0px - 639px (default) */
        /* Medium: 640px - 1023px */
        /* Large: 1024px - 1199px */
        /* XLarge: 1200px - 1439px */
        /* XXLarge: 1440px+ */

        /* Container */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header Styles */
        header {
            background: #fff;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
        }

        @media (min-width: 1024px) {
            .header-content {
                padding: 1.5rem 0;
            }
        }

        .logo {
            display: block;
            max-width: 400px;
            transition: opacity 0.3s ease;
        }

        .logo:hover {
            opacity: 0.8;
        }

        /* Logo image ratio: 5:1 (400x80) or similar wide ratio */
        .logo img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive logo sizing */
        @media (max-width: 639px) {
            .logo {
                max-width: 200px;
            }
        }

        @media (min-width: 640px) and (max-width: 1023px) {
            .logo {
                max-width: 300px;
            }
        }

        /* Navigation Styles */
        nav {
            display: none;
        }

        @media (min-width: 1024px) {
            nav {
                display: block;
            }
        }

        nav ul {
            list-style: none;
            display: flex;
            align-items: center;
        }

        nav > ul > li {
            position: relative;
            margin-left: 2rem;
        }

        nav a {
            color: #333;
            text-decoration: none;
            padding: 0.5rem 0;
            display: block;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #8C2220;
        }

        /* Dropdown Styles */
        nav ul ul {
            position: absolute;
            top: 100%;
            left: 0;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            border-radius: 4px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            flex-direction: column;
        }

        nav ul ul ul {
            left: 100%;
            top: 0;
        }

        nav li:hover > ul,
        nav li:focus-within > ul {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        nav ul ul li {
            margin: 0;
        }

        nav ul ul a {
            padding: 0.75rem 1rem;
            border-bottom: 1px solid #eee;
        }

        nav ul ul a:hover {
            background: #f5f5f5;
        }

        /* Dropdown Indicators */
        nav li.has-dropdown > a::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 0.7em;
            margin-left: 0.5rem;
        }

        nav ul ul li.has-dropdown > a::after {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            float: right;
        }

        /* Mobile Menu Button */
        .mobile-menu-toggle {
            display: block;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
        }

        @media (min-width: 1024px) {
            .mobile-menu-toggle {
                display: none;
            }
        }

        .mobile-menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: #333;
            margin: 5px 0;
            transition: background 0.3s ease;
        }

        /* Mobile Navigation Overlay */
        .mobile-nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .mobile-nav.active {
            opacity: 1;
            visibility: visible;
        }

        .mobile-nav ul {
            list-style: none;
            text-align: center;
        }

        .mobile-nav a {
            color: #fff;
            text-decoration: none;
            font-size: 1.5rem;
            padding: 1rem;
            display: block;
            transition: all 0.3s ease;
        }

        .mobile-nav a:hover {
            color: #d4a574;
            transform: translateX(10px);
        }

        .mobile-nav .submenu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .mobile-nav .submenu.active {
            max-height: 500px;
        }

        .mobile-nav .has-submenu > a::after {
            content: ' +';
            font-weight: bold;
        }

        .mobile-nav .has-submenu.active > a::after {
            content: ' −';
        }

        .mobile-nav .submenu a {
            font-size: 1.2rem;
            padding-left: 2rem;
            color: #ccc;
        }

        /* Hero Section */
        /* Hero image ratio: 16:9 (1920x1080) or wider */
        .hero {
            position: relative;
            height: 70vh;
            min-height: 500px;
            background: url('../images/header-back-v4.webp') center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding-top: 80px;
        }

        @media (min-width: 1024px) {
            .hero {
                padding-top: 120px;
            }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            padding: 2rem;
            max-width: 800px;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        @media (min-width: 640px) {
            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .hero h1 {
                font-size: 4rem;
            }
        }

        .hero p {
            font-size: 1.25rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
            font-weight: 300;
        }

        /* About Section */
        .about {
            padding: 4rem 0;
            background: #f8f8f8;
        }

        .about-content {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            align-items: center;
        }

        @media (min-width: 640px) {
            .about-content {
                flex-direction: row;
                gap: 3rem;
            }
        }

        .about-text {
            flex: 1;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #8C2220;
        }

        .about-image {
            flex: 1;
            max-width: 500px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }

        /* Slogan Section */
        .slogan {
            background: #1A1A1A;
            color: #fff;
            padding: 3rem 0;
            text-align: center;
        }

        .slogan h3 {
            font-size: 2rem;
            font-weight: 300;
            letter-spacing: 2px;
        }

        /* Services Cards */
        /* Service card background images (if used): 16:9 (640x360) */
        .services {
            padding: 4rem 0;
        }

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

        @media (min-width: 640px) {
            .services-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .service-card {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-card a {
            display: block;
            height: 100%;
            text-decoration: none;
            color: #fff;
            background: linear-gradient(135deg, #442222 0%, #8C2220 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 600;
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .service-card a:hover {
            background: linear-gradient(135deg, #8C2220 0%, #a82925 100%);
        }

        /* Footer */
        footer {
            background: #1a1a1a;
            color: #fff;
            padding: 3rem 0 1rem;
        }

        footer a {
        color:#FFFFFF;
        }

        footer a:hover {
        color:#F2F2F2;
        }

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

        @media (min-width: 640px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (min-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr 1fr 1fr;
            }
        }

        .footer-section h4 {
            margin-bottom: 1rem;
            color: #d4a574;
        }

        .testimonial {
            font-style: italic;
            line-height: 1.8;
        }

        .testimonial-author {
            margin-top: 1rem;
            font-style: normal;
            font-weight: 600;
        }

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

        .quick-links a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 0.25rem 0;
        }

        .quick-links a:hover {
            color: #d4a574;
        }

        .featured-photo img {
            width: 100%;
            height: auto;
            border-radius: 4px;
        }

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

        .contact-info i {
            color: #d4a574;
            width: 1.25rem;
            text-align: center;
            margin-right: 0.5rem;
        }

        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #333;
            color: #F2F2F2;
        }

        /* Accessibility Focus Styles */
        a:focus,
        button:focus {
            outline: 2px solid #d4a574;
            outline-offset: 2px;
        }

        /* Skip to Content Link */
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #8C2220;
            color: #fff;
            padding: 0.5rem 1rem;
            text-decoration: none;
            border-radius: 0 0 4px 0;
            z-index: 100;
        }

        .skip-link:focus {
            top: 0;
        }