        /* Video Hero Section */
        .video-hero {
            position: relative;
            width: 100%;
            height: 100vh;
            min-height: 600px;
            overflow: hidden;
        }
        
        .video-hero video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            z-index: 1;
        }
        
        .video-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(
                to bottom,
                rgba(0, 0, 0, 0.3) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0.7) 100%
            );
            z-index: 2;
        }
        
        .video-hero-content {
            position: relative;
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100%;
            padding: 20px;
            text-align: center;
        }
        
        .video-hero-title {
            font-family: 'Marcellus', serif;
            font-size: clamp(40px, 7vw, 100px);
            font-weight: 400;
            color: #ffffff;
            text-transform: uppercase;
            letter-spacing: 6px;
            text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
            margin: 0 0 30px 0;
        }
        
        .video-hero-locations {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .video-location-btn {
            display: inline-block;
            padding: 12px 30px;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            background: transparent;
            border: 2px solid #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .video-location-btn:hover {
            background: #ffffff;
            color: #1a1a1a;
        }
        
        .video-scroll-indicator {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            cursor: pointer;
            animation: bounce 2s infinite;
        }
        
        .video-scroll-indicator span {
            display: block;
            font-size: 24px;
            color: #ffffff;
            text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
            40% { transform: translateX(-50%) translateY(-10px); }
            60% { transform: translateX(-50%) translateY(-5px); }
        }
        
        @media (max-width: 768px) {
            .video-hero { height: 75vh; min-height: 450px; }
            .video-hero-title { letter-spacing: 3px; margin-bottom: 25px; }
            .video-hero-locations { flex-direction: column; gap: 12px; }
            .video-location-btn { padding: 12px 25px; font-size: 12px; }
        }

        /* About Section */
        .about-section {
            padding: 80px 20px;
            background: #ffffff;
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.05fr 0.95fr;
            gap: 60px;
            align-items: center;
        }

        .about-content {
            max-width: 620px;
        }

        .about-eyebrow {
            display: inline-block;
            margin-bottom: 18px;
            color: #e67e22;
            font-family: 'Arimo', sans-serif;
            font-weight: 700;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            font-size: 13px;
        }

        .about-title {
            font-family: 'Marcellus', serif;
            font-size: clamp(38px, 4vw, 58px);
            line-height: 1.03;
            color: #1a1a1a;
            margin: 0 0 24px 0;
        }

        .about-text {
            font-family: 'Arimo', sans-serif;
            font-size: 17px;
            color: #4f4f4f;
            line-height: 1.8;
            margin: 0 0 26px 0;
        }

        .about-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 16px 22px;
            margin: 0 0 32px 0;
        }

        .about-list-item {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-family: 'Arimo', sans-serif;
            font-size: 15px;
            color: #555;
            line-height: 1.75;
        }

        .about-list-icon {
            width: 38px;
            min-width: 38px;
            height: 38px;
            border-radius: 12px;
            background: #f9f0e6;
            color: #e67e22;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-top: 4px;
        }

        .about-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            background: #e67e22;
            color: #ffffff;
            font-family: 'Arimo', sans-serif;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 999px;
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .about-cta:hover {
            background: #cf6a1a;
            transform: translateY(-1px);
        }

        .about-image {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.12);
            min-height: 480px;
            position: relative;
            aspect-ratio: 4 / 5;
        }

        .about-slider {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .about-slider-track {
            display: flex;
            width: 500%;
            height: 100%;
            transform: translate3d(0, 0, 0);
            animation: aboutSlider 20s linear infinite;
            will-change: transform;
        }

        .about-slide {
            width: 20%;
            flex: 0 0 20%;
            height: 100%;
        }

        .about-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        @keyframes aboutSlider {
            0%, 16% { transform: translateX(0); }
            20%, 36% { transform: translateX(-20%); }
            40%, 56% { transform: translateX(-40%); }
            60%, 76% { transform: translateX(-60%); }
            80%, 96% { transform: translateX(-80%); }
            100% { transform: translateX(-80%); }
        }

        @media (max-width: 1024px) {
            .about-container {
                grid-template-columns: 1fr;
            }

            .about-image {
                min-height: 420px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 50px 20px;
            }

            .about-title {
                font-size: 36px;
            }

            .about-list {
                gap: 12px;
            }
        }

        /* Featured Products Section */
        .featured-products-section {
            padding: 60px 20px;
            background: #f9f9f9;
            text-align: center;
        }
        
        .featured-products-section h2 {
            font-family: 'Marcellus', serif;
            font-size: 38px;
            color: #1a1a1a;
            margin: 0 0 10px 0;
        }
        
        .section-subtitle {
            font-family: 'Arimo', sans-serif;
            font-size: 16px;
            color: #666;
            margin: 0 0 40px 0;
        }
        
        .products {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        @media (max-width: 1200px) {
            .products { grid-template-columns: repeat(3, 1fr); }
        }
        
        @media (max-width: 900px) {
            .products { grid-template-columns: repeat(2, 1fr); }
        }
        
        @media (max-width: 600px) {
            .products { grid-template-columns: 1fr; }
        }
        
        .product {
            background: #ffffff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .product:hover { transform: translateY(-4px); }
        
        .product a { text-decoration: none; color: inherit; display: block; }
        
        .product img { width: 100%; height: 220px; object-fit: cover; }
        
        .product-info {
            padding: 12px 15px 18px;
            text-align: left;
        }

        .product h3 {
            font-family: 'Arimo', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0 0 8px 0;
            text-align: left;
        }

        .product-desc {
            font-family: 'Arimo', sans-serif;
            font-size: 15px;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        .product .price { display: none; }
        
        .browse-more-products { margin-top: 30px; }
        
        .browse-more-btn {
            display: inline-block;
            padding: 14px 40px;
            font-family: 'Arimo', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #1a1a1a;
            background: transparent;
            border: 2px solid #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        
        .browse-more-btn:hover { background: #1a1a1a; color: #ffffff; }
        
        /* Location Sections */
        .pb-location-section { padding: 50px 20px; background: #ffffff; }
        .pb-location-section.reverse { background: #f9f9f9; }
        
        .pb-section-container {
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .pb-location-section.reverse .pb-section-container { flex-direction: row-reverse; }
        
        .pb-section-images {
            flex: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 12px;
        }
        
        .pb-image-large { grid-row: 1 / 3; }
        
        .pb-image-large img, .pb-image-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 8px;
        }
        
        .pb-section-content { flex: 1; }
        
        .pb-section-title {
            font-family: 'Marcellus', serif;
            font-size: 42px;
            color: #1a1a1a;
            margin: 0 0 15px 0;
        }
        
        .pb-section-text {
            font-family: 'Arimo', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin: 0 0 20px 0;
        }
        
        .pb-section-links { display: flex; flex-wrap: wrap; gap: 12px; }
        
        .pb-section-link {
            display: inline-block;
            padding: 12px 24px;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #1a1a1a;
            background: transparent;
            border: 2px solid #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .pb-section-link.highlight {
            background: #e67e22;
            border-color: #e67e22;
            color: #ffffff;
        }
        
        .pb-section-link.highlight:hover { background: #d35400; border-color: #d35400; }
        .pb-section-link:hover { background: #1a1a1a; color: #ffffff; }
        
        @media (max-width: 1024px) {
            .pb-section-container { flex-direction: column; }
            .pb-location-section.reverse .pb-section-container { flex-direction: column; }
        }
        
        @media (max-width: 768px) {
            .pb-section-title { font-size: 32px; }
            .pb-section-links { flex-direction: column; }
            .pb-section-link { text-align: center; }
        }
        
        /* Welcome Section */
        .welcome-section {
            padding: 70px 20px;
            background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&h=800&fit=crop') center/cover;
            text-align: center;
        }
        
        .welcome-content {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .welcome-title {
            font-family: 'Marcellus', serif;
            font-size: 44px;
            color: #ffffff;
            margin: 0 0 8px 0;
            text-transform: uppercase;
        }
        
        .welcome-subtitle {
            font-family: 'Arimo', sans-serif;
            font-size: 20px;
            color: #e67e22;
            margin: 0 0 15px 0;
            font-weight: 700;
        }
        
        .welcome-text {
            font-family: 'Arimo', sans-serif;
            font-size: 16px;
            color: #ffffff;
            line-height: 1.6;
            margin: 0 0 20px 0;
        }
        
        .welcome-btn {
            display: inline-block;
            padding: 14px 35px;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            background: #e67e22;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        
        .welcome-btn:hover { background: #d35400; }
        
        /* Groups & Parties Section */
        .groups-section {
            padding: 70px 20px;
            background: #f5f5f5;
            text-align: center;
        }
        
        .groups-content { max-width: 800px; margin: 0 auto; }
        
        .groups-title {
            font-family: 'Marcellus', serif;
            font-size: 40px;
            color: #1a1a1a;
            margin: 0 0 15px 0;
        }
        
        .groups-text {
            font-family: 'Arimo', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin: 0 0 20px 0;
        }
        
        .groups-btn {
            display: inline-block;
            padding: 14px 35px;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #ffffff;
            background: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        
        .groups-btn:hover { background: #333; }
        
        /* Order Section */
        .order-section {
            padding: 70px 20px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?w=1920&h=800&fit=crop') center/cover;
            text-align: center;
        }
        
        .order-content { max-width: 800px; margin: 0 auto; }
        
        .order-title {
            font-family: 'Marcellus', serif;
            font-size: 40px;
            color: #ffffff;
            margin: 0 0 15px 0;
            text-transform: uppercase;
        }
        
        .order-text {
            font-family: 'Arimo', sans-serif;
            font-size: 16px;
            color: #ffffff;
            line-height: 1.6;
            margin: 0 0 20px 0;
        }
        
        .order-btn {
            display: inline-block;
            padding: 14px 35px;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            font-weight: 700;
            color: #1a1a1a;
            background: #ffffff;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
        }
        
        .order-btn:hover { background: #e67e22; color: #ffffff; }
        
        /* Catering Section */
        .catering-section {
            padding: 70px 20px;
            background: #ffffff;
            text-align: center;
        }

        .catering-content { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

        .catering-title {
            font-family: 'Marcellus', serif;
            font-size: 40px;
            color: #1a1a1a;
            margin: 0 0 10px 0;
        }

        .catering-text {
            font-family: 'Arimo', sans-serif;
            font-size: 16px;
            color: #666;
            line-height: 1.6;
            margin: 0 0 20px 0;
        }

        .catering-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 30px;
        }

        .catering-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0,0,0,0.07);
            display: flex;
            flex-direction: column;
            text-decoration: none;
        }

        .catering-card img { width: 100%; height: 420px; object-fit: cover; display: block; }

        .catering-card-caption { padding: 20px; background: #fbf5ef; }

        .catering-card-caption h3 {
            font-family: 'Marcellus', serif;
            font-size: 18px;
            margin: 0 0 8px 0;
            color: #111;
        }

        .catering-card-caption p {
            font-family: 'Arimo', sans-serif;
            font-size: 14px;
            color: #666;
            margin: 0;
        }

        @media (max-width: 1000px) {
            .catering-cards { grid-template-columns: repeat(2, 1fr); }
            .catering-card img { height: 320px; }
        }

        @media (max-width: 600px) {
            .catering-cards { grid-template-columns: 1fr; }
            .catering-card img { height: 220px; }
        }
        
        /* Specials Section */
        .specials-section {
            padding: 50px 20px;
            background: #f9f9f9;
            text-align: center;
        }
        
        .specials-decoration {
            margin-bottom: 15px;
        }
        
        .specials-decoration img {
            max-width: 180px;
            height: auto;
        }
        
        .specials-title {
            font-family: 'Marcellus', serif;
            font-size: 36px;
            color: #1a1a1a;
            margin: 0 0 20px 0;
        }
        
        .specials-links {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .specials-link {
            display: inline-block;
            padding: 12px 25px;
            font-family: 'Arimo', sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: #e67e22;
            border: 2px solid #e67e22;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .specials-link:hover { background: #e67e22; color: #ffffff; }
        
        /* Gallery Section */
        .gallery-section {
            padding: 50px 20px;
            background: #ffffff;
            text-align: center;
        }
        
        .gallery-title {
            font-family: 'Marcellus', serif;
            font-size: 36px;
            color: #1a1a1a;
            margin: 0 0 30px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 15px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .gallery-item {
            overflow: hidden;
            border-radius: 8px;
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover img { transform: scale(1.1); }
        
        /* Reviews Section */
        .reviews-section {
            padding: 50px 20px;
            background: #f5f5f5;
            text-align: center;
        }
        
        .reviews-title {
            font-family: 'Marcellus', serif;
            font-size: 36px;
            color: #1a1a1a;
            margin: 0 0 30px 0;
        }
        
        .reviews-carousel {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .review-card {
            background: #ffffff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            text-align: left;
        }
        
        .review-source {
            font-family: 'Arimo', sans-serif;
            font-size: 12px;
            color: #888;
            text-transform: uppercase;
            margin-bottom: 8px;
        }
        
        .review-stars {
            color: #e67e22;
            font-size: 16px;
            margin-bottom: 12px;
        }
        
        .review-text {
            font-family: 'Arimo', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin: 0 0 12px 0;
            font-style: italic;
        }
        
        .review-author {
            font-family: 'Arimo', sans-serif;
            font-size: 14px;
            color: #1a1a1a;
            font-weight: 700;
        }
        
        /* Location Info Section */
        .location-info-section {
            padding: 50px 20px;
            background: #1a1a1a;
            color: #ffffff;
        }
        
        .location-info-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        
        .location-info-col h3 {
            font-family: 'Marcellus', serif;
            font-size: 18px;
            margin-bottom: 15px;
            color: #ffffff;
        }
        
        .location-info-col p {
            font-family: 'Arimo', sans-serif;
            font-size: 15px;
            color: #cccccc;
            line-height: 1.6;
        }
        
        .location-info-col a {
            color: #e67e22;
        }
        
        .location-social {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 15px;
        }
        
        .location-social a {
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            color: #cccccc;
            padding: 8px 14px;
            border: 1px solid #444;
            transition: all 0.3s ease;
        }
        
        .location-social a:hover { background: #e67e22; border-color: #e67e22; color: #ffffff; }
        
        /* Footer */
        .pb-footer {
            background: #f7f3ed;
            color: #1f1f1f;
            padding: 60px 20px 0;
        }
        
        .pb-footer-container {
            display: grid;
            grid-template-columns: repeat(6, minmax(160px, 1fr));
            gap: 28px;
            max-width: 1400px;
            margin: 0 auto;
            padding-bottom: 40px;
        }
        
        .pb-footer-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        @media (max-width: 1180px) {
            .pb-footer-container {
                grid-template-columns: repeat(4, minmax(160px, 1fr));
            }
        }
        
        @media (max-width: 940px) {
            .pb-footer-container {
                grid-template-columns: repeat(3, minmax(160px, 1fr));
            }
        }
        
        @media (max-width: 720px) {
            .pb-footer-container {
                grid-template-columns: repeat(2, minmax(160px, 1fr));
            }
        }
        
        @media (max-width: 540px) {
            .pb-footer-container {
                grid-template-columns: 1fr;
            }
        }
        
        .pb-footer h3 {
            font-family: 'Marcellus', serif;
            font-size: 18px;
            margin-bottom: 12px;
            color: #1f1f1f;
            letter-spacing: 0.02em;
        }
        
        .pb-footer p,
        .pb-footer a {
            font-family: 'Arimo', sans-serif;
            font-size: 14px;
            color: #4a4a4a;
            line-height: 1.8;
        }
        
        .pb-footer a {
            text-decoration: none;
            color: #4a4a4a;
        }
        
        .pb-footer a:hover {
            color: #c2381a;
        }
        
        .pb-footer-list {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 8px;
        }
        
        .pb-footer-list li {
            margin: 0;
        }
        
        .pb-footer-list a {
            display: inline-block;
            transition: color 0.25s ease;
        }
        
        .footer-logo-link {
            display: inline-block;
            max-width: 180px;
        }

        .footer-logo {
            width: 100%;
            height: auto;
            display: block;
            max-width: 180px;
        }

        .footer-brand-column p {
            max-width: 220px;
        }

        .pb-social {
            display: flex;
            gap: 10px;
            margin-top: 10px;
        }
        
        .pb-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: #1f1f1f;
            color: #f7f3ed;
            border-radius: 50%;
            transition: all 0.3s ease;
            padding: 0;
        }
        
        .pb-social a:hover {
            background: #d4242a;
            color: #ffffff;
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(212, 36, 42, 0.35);
        }
        
        .pb-footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 14px;
            background: #202020;
            color: #f4f2ef;
            padding: 18px 20px;
            margin: 0;
            /* Make the dark bar span the full viewport width */
            width: 100vw;
            margin-left: calc(50% - 50vw);
            box-sizing: border-box;
        }
        
        .pb-footer-bottom .footer-contact {
            font-family: 'Arimo', sans-serif;
            font-size: 14px;
            color: #f4f2ef;
        }
        
        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
        }
        
        .footer-legal a {
            color: #f4f2ef;
            text-decoration: none;
            font-family: 'Arimo', sans-serif;
            font-size: 13px;
            transition: color 0.2s ease;
        }
        
        .footer-legal a:hover {
            color: #c2381a;
        }
        
        .pb-footer-bottom p,
        .footer-contact {
            margin: 0;
        }
        /* Our Services Section */
        .services-section {
            padding: 70px 20px;
            background: #fbf0df;
            text-align: center;
        }

        .services-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

        .services-title {
            font-family: 'Marcellus', serif;
            font-size: 40px;
            color: #1a1a1a;
            margin: 0 0 10px 0;
        }

        .services-decor { margin-bottom: 25px; }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 20px;
        }

        .service-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            display: flex;
            flex-direction: column;
        }

        .service-card img { width: 100%; height: 360px; object-fit: cover; display: block; }

        .service-card-body {
            padding: 22px;
            text-align: left;
        }

        .service-card-title {
            font-family: 'Marcellus', serif;
            font-size: 22px;
            margin: 0 0 8px 0;
            color: #111;
        }

        .service-card-text {
            font-family: 'Arimo', sans-serif;
            font-size: 15px;
            color: #666;
            line-height: 1.6;
            margin: 0;
        }

        @media (max-width: 900px) {
            .service-cards { grid-template-columns: 1fr; }
            .service-card img { height: 260px; }
        }