/*
Theme Name: Desi Mandapam - Baati Chokha Restaurant
Theme URI: https://desimandapam.com
Author: EzyGrade Web
Author URI: https://ezygrade.com
Description: Custom one-page restaurant theme for Desi Mandapam Baati Chokha Restaurant, a unit of Mr. Jalapenos. Features hero section, menu tabs, Google reviews, gallery and reservation CTA.
Version: 1.0
Requires at least: 5.8
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: desi-mandapam
*/

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

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body, 'Lora'), sans-serif;
            overflow-x: hidden;
            background-color: #fef3c7;
            background-image:
                linear-gradient(to bottom, rgba(254,243,199,0.94), rgba(255,255,255,0.94), rgba(254,245,241,0.94)),
                url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cg fill='none' stroke='%23b45309' stroke-width='1' opacity='0.16'%3E%3Ccircle cx='60' cy='60' r='34'/%3E%3Ccircle cx='60' cy='60' r='22'/%3E%3Cpath d='M60 8 L66 40 L60 60 L54 40 Z'/%3E%3Cpath d='M112 60 L80 66 L60 60 L80 54 Z'/%3E%3Cpath d='M60 112 L54 80 L60 60 L66 80 Z'/%3E%3Cpath d='M8 60 L40 54 L60 60 L40 66 Z'/%3E%3C/g%3E%3C/svg%3E");
            background-repeat: repeat;
            background-attachment: fixed;
        }

        h1, h2, h3, h4, h5, h6, .font-serif {
            font-family: var(--font-heading, 'Playfair Display'), serif;
        }

        /* Scrollbar Styling */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(to bottom, #dc2626, #f59e0b);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(to bottom, #991b1b, #d97706);
        }

        /* Navigation */
        nav {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(10px);
            background: linear-gradient(to right, rgba(127, 29, 29, 0.95), rgba(120, 53, 15, 0.95));
            border-bottom: 4px solid #fbbf24;
            padding: 1rem 2rem;
            overflow: hidden;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.5rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            min-width: 0;
            flex: 1 1 auto;
        }

        .logo-section > div {
            min-width: 0;
            overflow: hidden;
        }

        .logo-img {
            height: 70px;
            width: auto;
            object-fit: contain;
            border-radius: 8px;
            flex-shrink: 0;
        }

        h1 {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0;
            overflow-wrap: break-word;
        }

        .tagline {
            color: #fcd34d;
            font-size: 0.875rem;
            font-weight: 600;
            margin: 0;
            overflow-wrap: break-word;
        }

        .unit-text {
            color: #fbbf24;
            font-size: 0.75rem;
            font-weight: 500;
            margin: 0;
            font-style: italic;
            overflow-wrap: break-word;
        }

        .nav-toggle {
            display: block;
            flex-shrink: 0;
            background: none;
            border: 2px solid #fbbf24;
            border-radius: 6px;
            color: #fcd34d;
            font-size: 1.4rem;
            line-height: 1;
            padding: 0.4rem 0.6rem;
            cursor: pointer;
        }

        .nav-links {
            display: none;
            flex-direction: column;
            gap: 1rem;
            position: fixed;
            top: 0;
            right: 0;
            height: 100vh;
            width: min(78vw, 320px);
            margin: 0;
            padding: 5.5rem 1.5rem 2rem;
            background: linear-gradient(to bottom, #7f1d1d, #78350f);
            box-shadow: -4px 0 20px rgba(0,0,0,0.35);
            z-index: 49;
        }

        .nav-links.open {
            display: flex;
        }

        .nav-links a {
            color: #fed7aa;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.125em;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #fcd34d;
        }

        .nav-links a.nav-social {
            background-color: rgba(251, 191, 36, 0.2);
            padding: 0.5rem 0.75rem;
            border-radius: 4px;
            font-weight: 700;
            transition: all 0.3s;
        }

        .nav-links a.nav-social:hover {
            background-color: rgba(251, 191, 36, 0.4);
            color: #fef3c7;
        }

        @media (max-width: 480px) {
            nav {
                padding: 0.75rem 1rem;
            }
            .logo-img {
                height: 46px;
            }
            h1 {
                font-size: 1rem;
            }
            .tagline {
                font-size: 0.7rem;
            }
            .unit-text {
                font-size: 0.6rem;
            }
        }

        @media (min-width: 768px) {
            .nav-toggle {
                display: none;
            }
            .nav-links {
                display: flex;
                flex-direction: row;
                position: static;
                height: auto;
                width: auto;
                padding: 0;
                background: none;
                box-shadow: none;
                gap: 2rem;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding-top: 120px;
            padding-bottom: 80px;
            padding-left: 1rem;
            padding-right: 1rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #eab308, #dc2626, #ea580c);
        }

        .hero-container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
            align-items: center;
        }

        @media (min-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .hero-text {
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .hero-divider {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .divider-line {
            width: 4px;
            height: 32px;
            background: linear-gradient(to bottom, #eab308, #dc2626);
        }

        .divider-text {
            color: #7f1d1d;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.125em;
            font-size: 0.875rem;
        }

        .hero h2 {
            font-size: 3.5rem;
            color: #7f1d1d;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 768px) {
            .hero h2 {
                font-size: 4.5rem;
            }
        }

        .hero-gradient {
            background: linear-gradient(to right, #b45309, #dc2626, #ea580c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 1.125rem;
            color: #374151;
            line-height: 1.75;
            border-left: 4px solid #eab308;
            padding-left: 1rem;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }
        }

        .btn {
            padding: 1rem 2rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.0625em;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background: linear-gradient(to right, #b91c1c, #ea580c);
            color: white;
            box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3);
        }

        .btn-primary:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 30px -5px rgba(220, 38, 38, 0.5);
        }

        .btn-secondary {
            border: 3px solid #b91c1c;
            color: #b91c1c;
            background: transparent;
        }

        .btn-secondary:hover {
            background-color: #fef2f2;
            transform: scale(1.05);
        }

        .trust-badges {
            display: flex;
            gap: 1.5rem;
            padding-top: 1rem;
        }

        .badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .badge-dot {
            width: 12px;
            height: 12px;
            background: linear-gradient(to right, #eab308, #dc2626);
            border-radius: 50%;
        }

        .badge-text {
            font-size: 0.875rem;
            font-weight: 600;
            color: #374151;
        }

        .hero-image {
            display: none;
            position: relative;
            height: 400px;
        }

        @media (min-width: 768px) {
            .hero-image {
                display: flex;
                align-items: flex-end;
            }
        }

        .hero-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(253, 224, 71, 0.3), rgba(239, 68, 68, 0.3));
            border-radius: 1.5rem;
            transform: rotate(-3deg);
        }

        .hero-image img {
            position: relative;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1.5rem;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            transition: transform 0.3s;
        }

        .hero-image img:hover {
            transform: scale(1.05);
        }

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

        .scroll-indicator {
            position: absolute;
            bottom: 32px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            50% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        /* Two Brands Section */
        .brands-section {
            padding: 6rem 1rem;
            position: relative;
        }

        .brands-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 96px;
            height: 4px;
            background: linear-gradient(to right, transparent, #dc2626, transparent);
        }

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

        .brands-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .brands-header h3 {
            font-size: 3.5rem;
            color: #7f1d1d;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .brands-header h3 {
                font-size: 4rem;
            }
        }

        .brands-header p {
            font-size: 1.125rem;
            color: #374151;
            max-width: 512px;
            margin: 0 auto 1.5rem;
        }

        .brand-dots {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .dot-1 { background-color: #eab308; }
        .dot-2 { background-color: #dc2626; }
        .dot-3 { background-color: #ea580c; }

        .brand-card {
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            margin-bottom: 4rem;
        }

        .brand-card-dark {
            background: linear-gradient(135deg, #7f1d1d, #7c2d12, #92400e);
        }

        .brand-card-light {
            background: linear-gradient(135deg, #fef3c7, #fde68a, #fed7aa);
            border: 4px solid #fbbf24;
        }

        .brand-grid {
            display: grid;
            grid-template-columns: 1fr;
        }

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

        .brand-image {
            position: relative;
            height: 320px;
            overflow: hidden;
        }

        .brand-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .brand-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(127, 29, 29, 0.6), transparent);
        }

        .image-nav-btn {
            position: absolute;
            bottom: 1rem;
            padding: 0.5rem 1rem;
            background-color: #eab308;
            color: #7f1d1d;
            border: none;
            border-radius: 9999px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .image-nav-btn:hover {
            background-color: #facc15;
        }

        .brand-content {
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .brand-content-dark {
            color: white;
        }

        .brand-content-light {
            color: #1f2937;
        }

        .brand-badge {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .brand-badge-icon {
            font-size: 24px;
        }

        .brand-badge-text {
            font-size: 0.875rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.125em;
        }

        .brand-badge-dark .brand-badge-text {
            color: #fcd34d;
        }

        .brand-badge-light .brand-badge-text {
            color: #b91c1c;
        }

        .brand-content h4 {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        .brand-subtitle {
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.25rem;
        }

        .brand-subtitle-light {
            color: #ea580c;
        }

        .unit-badge {
            display: inline-block;
            background: linear-gradient(to right, #eab308, #ea580c);
            color: white;
            padding: 0.375rem 0.875rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            margin: 0.75rem 0 1rem 0;
            letter-spacing: 0.05em;
        }

        .brand-description {
            font-size: 1.125rem;
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .brand-actions {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-btn {
            width: 48px;
            height: 48px;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-btn-dark {
            background-color: rgba(251, 191, 36, 0.2);
        }

        .social-btn-dark:hover {
            background-color: rgba(251, 191, 36, 0.4);
        }

        .social-btn-light {
            background-color: rgba(185, 28, 28, 0.2);
        }

        .social-btn-light:hover {
            background-color: rgba(185, 28, 28, 0.4);
        }

        .explore-btn {
            flex: 1;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.0625em;
            cursor: pointer;
            transition: all 0.3s;
            color: white;
            text-decoration: none;
            text-align: center;
            display: inline-block;
        }

        .explore-btn-dark {
            background: #eab308;
            color: #7f1d1d;
        }

        .explore-btn-dark:hover {
            background: #facc15;
        }

        .explore-btn-light {
            background: linear-gradient(to right, #b91c1c, #ea580c);
        }

        .explore-btn-light:hover {
            opacity: 0.9;
        }

        /* Google Reviews Section */
        .reviews-section {
            padding: 6rem 1rem;
            background: linear-gradient(to bottom, #fef3c7, #ffffff);
            position: relative;
        }

        .reviews-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #eab308, #dc2626, #ea580c);
        }

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

        .reviews-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .reviews-header-flex {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .reviews-header h3 {
            font-size: 3.5rem;
            color: #7f1d1d;
            margin: 0;
        }

        @media (min-width: 768px) {
            .reviews-header h3 {
                font-size: 4rem;
            }
        }

        .reviews-subtext {
            font-size: 1.125rem;
            color: #374151;
            max-width: 512px;
            margin: 0 auto;
        }

        .restaurant-reviews {
            margin-bottom: 4rem;
        }

        .restaurant-title-bar {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .restaurant-name {
            font-size: 1.875rem;
            font-weight: bold;
            color: #7f1d1d;
        }

        .rating-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stars {
            display: flex;
            gap: 0.25rem;
        }

        .star {
            color: #eab308;
            font-size: 1.5rem;
        }

        .rating-score {
            font-size: 1.25rem;
            font-weight: bold;
            color: #1f2937;
        }

        .rating-count {
            color: #4b5563;
            font-size: 0.875rem;
        }

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

        @media (min-width: 768px) {
            .review-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .review-card {
            background-color: white;
            border-radius: 1rem;
            padding: 1.5rem;
            border: 2px solid;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .review-card:hover {
            transform: translateY(-4px);
        }

        .review-card-dark {
            border-color: rgba(251, 191, 36, 0.6);
        }

        .review-card-dark:hover {
            border-color: #dc2626;
        }

        .review-card-light {
            border-color: rgba(254, 215, 170, 0.6);
        }

        .review-card-light:hover {
            border-color: #7f1d1d;
        }

        .review-header {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .reviewer-avatar {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .reviewer-avatar-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: 600;
            color: #1f2937;
        }

        .review-meta {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-top: 0.25rem;
        }

        .review-stars {
            display: flex;
            gap: 0.125rem;
        }

        .review-date {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .review-text {
            color: #374151;
            line-height: 1.75;
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .review-footer {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid #e5e7eb;
        }

        .google-logo {
            height: 16px;
        }

        .view-all-btn {
            display: inline-block;
            margin-top: 2rem;
            padding: 1rem 2rem;
            background: linear-gradient(to right, #b91c1c, #ea580c);
            color: white;
            border-radius: 0.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.0625em;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3);
        }

        .view-all-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 30px -5px rgba(220, 38, 38, 0.5);
        }

        .review-divider {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 4rem 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin-top: 5rem;
        }

        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .stat-card {
            background: linear-gradient(135deg, #fef3c7, #fed7aa);
            border-radius: 1rem;
            padding: 1.5rem;
            border: 2px solid #fbbf24;
            text-align: center;
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        .stat-value {
            font-size: 1.875rem;
            font-weight: bold;
            color: #7f1d1d;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #374151;
            font-weight: 500;
        }

        /* Menu Section */
        .menu-section {
            padding: 6rem 1rem;
            background: linear-gradient(to bottom, #ffffff, #fef3c7);
            position: relative;
        }

        .menu-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #eab308, #dc2626, #ea580c);
        }

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

        .menu-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .menu-subtext {
            font-size: 1.125rem;
            color: #374151;
            max-width: 512px;
            margin: 0 auto;
        }

        .menu-tabs {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .menu-tab-btn {
            padding: 0.75rem 1.5rem;
            border: 2px solid #eab308;
            background-color: transparent;
            color: #7f1d1d;
            border-radius: 9999px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 0.875rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .menu-tab-btn:hover {
            background-color: #eab308;
            color: white;
        }

        .menu-tab-btn.active {
            background: linear-gradient(to right, #b91c1c, #ea580c);
            color: white;
            border-color: #b91c1c;
        }

        .menu-content {
            display: none;
        }

        .menu-content.active {
            display: block;
            animation: fadeIn 0.4s ease-in;
        }

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

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

        @media (min-width: 768px) {
            .menu-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .menu-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .menu-item {
            background-color: white;
            border-left: 4px solid #eab308;
            padding: 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }

        .menu-item:hover {
            box-shadow: 0 10px 25px -5px rgba(220, 38, 38, 0.15);
            transform: translateY(-4px);
            border-left-color: #dc2626;
        }

        .menu-item-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.75rem;
        }

        .menu-item h4 {
            font-size: 1.25rem;
            color: #7f1d1d;
            margin: 0;
            font-weight: 600;
        }

        .menu-price {
            color: #b91c1c;
            font-weight: bold;
            font-size: 1.125rem;
        }

        .menu-description {
            color: #666;
            font-size: 0.875rem;
            line-height: 1.6;
            margin: 0.75rem 0 0 0;
        }

        .menu-badge {
            display: inline-block;
            background: linear-gradient(to right, #eab308, #ea580c);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 0.75rem;
        }

        /* Philosophy Section */
        .philosophy {
            padding: 5rem 1rem;
            background: linear-gradient(to right, rgba(220, 38, 38, 0.05), rgba(251, 191, 36, 0.05), rgba(234, 88, 12, 0.05));
        }

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

        .philosophy h3 {
            font-size: 3rem;
            color: #7f1d1d;
            text-align: center;
            margin-bottom: 4rem;
        }

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

        @media (min-width: 768px) {
            .philosophy-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .philosophy-card {
            position: relative;
            padding: 2rem;
            border: 2px solid rgba(251, 191, 36, 0.4);
            border-radius: 1rem;
            transition: all 0.3s;
        }

        .philosophy-card:hover {
            border-color: rgba(185, 28, 28, 0.6);
            background-color: rgba(253, 224, 71, 0.2);
        }

        .philosophy-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(to right, #eab308, #dc2626);
            border-radius: 999px;
            transition: width 0.3s;
        }

        .philosophy-card:hover::after {
            width: 100%;
        }

        .philosophy-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .philosophy-title {
            font-size: 1.5rem;
            font-weight: bold;
            color: #7f1d1d;
            margin-bottom: 1rem;
        }

        .philosophy-text {
            color: #374151;
            line-height: 1.75;
            font-size: 1.125rem;
        }

        /* Gallery Section */
        .gallery {
            padding: 5rem 1rem;
        }

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

        .gallery-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .gallery h3 {
            font-size: 3rem;
            color: #7f1d1d;
            margin-bottom: 1rem;
        }

        .gallery p {
            font-size: 1.125rem;
            color: #374151;
            margin-bottom: 2rem;
        }

        .gallery-carousel-wrap {
            position: relative;
        }

        .gallery-carousel {
            display: flex;
            gap: 1.5rem;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding-bottom: 0.5rem;
            -webkit-overflow-scrolling: touch;
        }

        .gallery-carousel::-webkit-scrollbar {
            height: 8px;
        }

        .gallery-item {
            position: relative;
            flex: 0 0 260px;
            height: 320px;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25);
            scroll-snap-align: start;
        }

        @media (min-width: 640px) {
            .gallery-item {
                flex-basis: 320px;
            }
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(127, 29, 29, 0.6), transparent);
            opacity: 0;
            transition: opacity 0.3s;
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .carousel-arrow {
            display: none;
        }

        @media (min-width: 768px) {
            .carousel-arrow {
                display: flex;
                align-items: center;
                justify-content: center;
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 44px;
                height: 44px;
                border-radius: 50%;
                background: rgba(127, 29, 29, 0.9);
                color: #fcd34d;
                border: 2px solid #fbbf24;
                font-size: 1.25rem;
                cursor: pointer;
                z-index: 5;
            }

            .carousel-arrow:hover {
                background: #7f1d1d;
            }

            .carousel-arrow-prev {
                left: -22px;
            }

            .carousel-arrow-next {
                right: -22px;
            }
        }

        .gallery-title {
            color: white;
            font-weight: bold;
            font-size: 1.25rem;
            font-family: 'Playfair Display', serif;
        }

        /* CTA Section */
        .cta {
            position: relative;
            padding: 5rem 1rem;
            background: linear-gradient(to right, #b91c1c, #ea580c, #eab308);
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            opacity: 0.2;
        }

        .cta-container {
            max-width: 1024px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .cta h2 {
            font-size: 3rem;
            color: white;
            margin-bottom: 1rem;
        }

        @media (min-width: 768px) {
            .cta h2 {
                font-size: 3.5rem;
            }
        }

        .cta p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.75;
            margin-bottom: 2rem;
        }

        .cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        @media (min-width: 640px) {
            .cta-buttons {
                flex-direction: row;
            }
        }

        .cta-btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 0.0625em;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn-white {
            background-color: white;
            color: #b91c1c;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
        }

        .cta-btn-white:hover {
            background-color: #fef2f2;
            transform: scale(1.05);
        }

        .cta-btn-outline {
            border: 3px solid white;
            color: white;
            background: transparent;
        }

        .cta-btn-outline:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: linear-gradient(to bottom, #7f1d1d, #7f1d1d, #78270f);
            color: #fef3c7;
            padding: 4rem 1rem;
            border-top: 4px solid #eab308;
        }

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

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

        @media (min-width: 768px) {
            .footer-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .footer-col h6 {
            font-weight: bold;
            color: white;
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .footer-col p {
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: #fcd34d;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            transition: color 0.3s;
        }

        .footer-col a:hover {
            color: #fef3c7;
        }

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

        .footer-col li {
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }

        .footer-col li a {
            color: inherit;
        }

        .footer-bottom {
            border-top: 2px solid rgba(251, 191, 36, 0.3);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
        }

        .hidden {
            display: none;
        }

        @media (max-width: 640px) {
            .hero h2 {
                font-size: 2.5rem;
            }

            .brands-header h3 {
                font-size: 2.5rem;
            }

            .reviews-header h3 {
                font-size: 2.5rem;
            }

            .philosophy h3 {
                font-size: 2rem;
            }

            .gallery h3 {
                font-size: 2rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .divider-line {
                display: none;
            }

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

            .brand-grid-reverse {
                display: grid;
                grid-template-columns: 1fr;
            }

            .brand-grid-reverse .brand-image {
                order: 1;
            }

            .brand-grid-reverse .brand-content {
                order: 2;
            }
        }
