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

        :root {
            --brown-deep: #2C1810;
            --brown-medium: #5C3D2E;
            --brown-light: #8B6914;
            --terracotta: #C4622D;
            --terracotta-light: #D4845A;
            --cream: #F5F0E8;
            --cream-dark: #E8DFD0;
            --gold: #C9A96E;
            --gold-light: #D4BC8B;
            --white: #FFFDF8;
            --text-dark: #1A0F0A;
            --text-medium: #4A3728;
            --text-light: #7A6555;
            --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.08);
            --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.12);
            --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.16);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-medium);
            background-color: var(--white);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', serif;
            color: var(--text-dark);
            line-height: 1.2;
        }

        /* ==================== NAVIGATION ==================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.25rem 2rem;
            transition: var(--transition);
            background: transparent;
        }

        .navbar.scrolled {
            background: rgba(255, 253, 248, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-sm);
            padding: 0.75rem 2rem;
        }

        .navbar-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo svg {
            width: 28px;
            height: 28px;
        }

        .navbar.scrolled .logo {
            color: var(--brown-deep);
        }

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

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.02em;
            transition: var(--transition);
            position: relative;
        }

        .navbar.scrolled .nav-links a {
            color: var(--text-medium);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 1.5px;
            background: var(--gold);
            transition: width 0.3s ease;
        }

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

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

        .navbar.scrolled .nav-links a:hover {
            color: var(--terracotta);
        }

        .nav-cta {
            background: var(--terracotta) !important;
            color: var(--white) !important;
            padding: 0.6rem 1.5rem;
            border-radius: 50px;
            font-weight: 500;
            letter-spacing: 0.03em;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--terracotta-light) !important;
            transform: translateY(-1px);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
            border-radius: 2px;
        }

        .navbar.scrolled .mobile-toggle span {
            background: var(--brown-deep);
        }

        /* ==================== HERO ==================== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/legacy-demos/esencia-habana-img/1b8edc479-2c3c-4a49-93ed-ab423fe1a519.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(
                135deg,
                rgba(44, 24, 16, 0.75) 0%,
                rgba(44, 24, 16, 0.45) 50%,
                rgba(196, 98, 45, 0.3) 100%
            );
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            padding: 2rem;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(201, 169, 110, 0.2);
            border: 1px solid rgba(201, 169, 110, 0.4);
            color: var(--gold-light);
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            backdrop-filter: blur(10px);
        }

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: var(--white);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .hero h1 em {
            color: var(--gold-light);
            font-style: italic;
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, 0.85);
            max-width: 560px;
            margin: 0 auto 2.5rem;
            font-weight: 300;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2.2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            text-decoration: none;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-family: 'Inter', sans-serif;
            letter-spacing: 0.02em;
        }

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

        .btn-primary:hover {
            background: var(--terracotta-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 98, 45, 0.35);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255, 255, 255, 0.5);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--gold-light);
            color: var(--gold-light);
        }

        .hero-scroll {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            animation: bounce 2s infinite;
        }

        .hero-scroll svg {
            width: 28px;
            height: 28px;
            color: rgba(255, 255, 255, 0.6);
        }

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

        /* ==================== SECTIONS ==================== */
        .section {
            padding: 6rem 2rem;
        }

        .section-container {
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .section-tag {
            display: inline-block;
            color: var(--terracotta);
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.05rem;
            color: var(--text-light);
            font-weight: 300;
            line-height: 1.8;
        }

        /* ==================== STORY SECTION ==================== */
        .story-section {
            background: var(--cream);
        }

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

        .story-image {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .story-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .story-image-accent {
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 120px;
            height: 120px;
            border: 3px solid var(--gold);
            border-radius: 16px;
            z-index: -1;
        }

        .story-content h2 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
        }

        .story-content p {
            margin-bottom: 1.25rem;
            font-size: 1rem;
            line-height: 1.9;
        }

        .story-highlight {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--cream-dark);
        }

        .story-stat {
            text-align: center;
        }

        .story-stat-number {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--terracotta);
            display: block;
        }

        .story-stat-label {
            font-size: 0.8rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* ==================== PROCESS SECTION ==================== */
        .process-section {
            background: var(--brown-deep);
            color: var(--cream);
            position: relative;
            overflow: hidden;
        }

        .process-section .section-tag {
            color: var(--gold-light);
        }

        .process-section .section-title {
            color: var(--white);
        }

        .process-section .section-subtitle {
            color: rgba(245, 240, 232, 0.7);
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            position: relative;
        }

        .process-steps::before {
            content: '';
            position: absolute;
            top: 45px;
            left: 12.5%;
            right: 12.5%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), var(--terracotta), var(--gold));
            opacity: 0.3;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .process-step-icon {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            background: rgba(201, 169, 110, 0.1);
            border: 2px solid var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
            transition: var(--transition);
        }

        .process-step:hover .process-step-icon {
            background: rgba(201, 169, 110, 0.2);
            transform: scale(1.1);
        }

        .process-step-icon svg {
            width: 36px;
            height: 36px;
            color: var(--gold-light);
        }

        .process-step-number {
            font-family: 'Playfair Display', serif;
            font-size: 0.85rem;
            color: var(--gold);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .process-step h4 {
            color: var(--white);
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
        }

        .process-step p {
            font-size: 0.9rem;
            color: rgba(245, 240, 232, 0.65);
            line-height: 1.7;
        }

        /* ==================== MENU SECTION ==================== */
        .menu-section {
            background: var(--white);
        }

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

        .menu-filter {
            padding: 0.6rem 1.5rem;
            border: 1.5px solid var(--cream-dark);
            border-radius: 50px;
            background: transparent;
            color: var(--text-medium);
            font-size: 0.9rem;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
        }

        .menu-filter:hover, .menu-filter.active {
            background: var(--terracotta);
            color: var(--white);
            border-color: var(--terracotta);
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .menu-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid var(--cream-dark);
        }

        .menu-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .menu-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }

        .menu-card-body {
            padding: 1.25rem;
        }

        .menu-card-category {
            font-size: 0.75rem;
            color: var(--terracotta);
            text-transform: uppercase;
            letter-spacing: 0.1em;
            font-weight: 600;
            margin-bottom: 0.4rem;
        }

        .menu-card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .menu-card-desc {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .menu-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .menu-card-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--terracotta);
        }

        .menu-card-tag {
            font-size: 0.7rem;
            padding: 0.25rem 0.6rem;
            border-radius: 50px;
            background: var(--cream);
            color: var(--text-light);
            font-weight: 500;
        }

        .menu-card.hidden {
            display: none;
        }

        /* ==================== TESTIMONIALS ==================== */
        .testimonials-section {
            background: var(--cream);
        }

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

        .testimonial-card {
            background: var(--white);
            border-radius: 16px;
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .testimonial-quote {
            font-size: 2rem;
            color: var(--gold);
            font-family: 'Playfair Display', serif;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .testimonial-text {
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

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

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-dark);
        }

        .testimonial-role {
            font-size: 0.8rem;
            color: var(--text-light);
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }

        /* ==================== RESERVATION ==================== */
        .reservation-section {
            background: var(--white);
            position: relative;
        }

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

        .reservation-info {
            padding: 2rem;
        }

        .reservation-info h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .reservation-info p {
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .reservation-features {
            list-style: none;
        }

        .reservation-features li {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
        }

        .reservation-features li svg {
            width: 20px;
            height: 20px;
            color: var(--terracotta);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .reservation-form {
            background: var(--cream);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
        }

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

        .form-label {
            display: block;
            font-size: 0.85rem;
            font-weight: 500;
            color: var(--text-medium);
            margin-bottom: 0.5rem;
        }

        .form-input, .form-select {
            width: 100%;
            padding: 0.85rem 1rem;
            border: 1.5px solid var(--cream-dark);
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background: var(--white);
            transition: var(--transition);
        }

        .form-input:focus, .form-select:focus {
            outline: none;
            border-color: var(--terracotta);
            box-shadow: 0 0 0 3px rgba(196, 98, 45, 0.1);
        }

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

        .form-submit {
            width: 100%;
            padding: 1rem;
            background: var(--terracotta);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            font-family: 'Inter', sans-serif;
            margin-top: 0.5rem;
        }

        .form-submit:hover {
            background: var(--terracotta-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(196, 98, 45, 0.35);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 2rem;
        }

        .form-success.show {
            display: block;
        }

        .form-success svg {
            width: 60px;
            height: 60px;
            color: #4CAF50;
            margin-bottom: 1rem;
        }

        .form-success h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .form-success p {
            color: var(--text-light);
        }

        /* ==================== LOCATION ==================== */
        .location-section {
            background: var(--cream);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: stretch;
        }

        .location-map {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            min-height: 400px;
            background: var(--cream-dark);
            position: relative;
        }

        .location-map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        .map-placeholder {
            width: 100%;
            height: 100%;
            min-height: 400px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--brown-deep), var(--brown-medium));
            color: var(--cream);
            text-align: center;
            padding: 2rem;
        }

        .map-placeholder svg {
            width: 48px;
            height: 48px;
            color: var(--gold);
            margin-bottom: 1rem;
        }

        .map-placeholder h4 {
            color: var(--white);
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .map-placeholder p {
            color: rgba(245, 240, 232, 0.7);
            font-size: 0.9rem;
        }

        .location-details {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .location-card {
            background: var(--white);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .location-card:hover {
            box-shadow: var(--shadow-md);
        }

        .location-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
        }

        .location-card-header svg {
            width: 22px;
            height: 22px;
            color: var(--terracotta);
        }

        .location-card-header h4 {
            font-size: 1.1rem;
        }

        .location-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            line-height: 1.7;
        }

        .location-card a {
            color: var(--terracotta);
            text-decoration: none;
            font-weight: 500;
        }

        .location-card a:hover {
            text-decoration: underline;
        }

        /* ==================== FOOTER ==================== */
        .footer {
            background: var(--brown-deep);
            color: var(--cream);
            padding: 4rem 2rem 2rem;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            color: rgba(245, 240, 232, 0.6);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

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

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

        .footer-social a:hover {
            background: var(--terracotta);
            transform: translateY(-2px);
        }

        .footer-social a svg {
            width: 18px;
            height: 18px;
        }

        .footer-col h4 {
            color: var(--white);
            font-size: 1rem;
            margin-bottom: 1.25rem;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
        }

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

        .footer-col ul li {
            margin-bottom: 0.6rem;
        }

        .footer-col ul a {
            color: rgba(245, 240, 232, 0.6);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .footer-col ul a:hover {
            color: var(--gold-light);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(245, 240, 232, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: rgba(245, 240, 232, 0.4);
            font-size: 0.85rem;
        }

        /* ==================== ANIMATIONS ==================== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* ==================== MOBILE MENU ==================== */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(44, 24, 16, 0.97);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.5rem;
            font-family: 'Playfair Display', serif;
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            color: var(--gold-light);
        }

        .mobile-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-close svg {
            width: 28px;
            height: 28px;
        }

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 1024px) {
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-steps::before {
                display: none;
            }

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

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

            .mobile-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .story-grid,
            .reservation-grid,
            .location-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .story-image img {
                height: 300px;
            }

            .testimonials-track {
                grid-template-columns: 1fr;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }

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

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

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

            .section {
                padding: 4rem 1.25rem;
            }

            .story-highlight {
                gap: 1rem;
            }

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

        /* ==================== GALLERY ==================== */
        .gallery-section {
            background: var(--white);
            padding: 4rem 2rem;
        }

        .gallery-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            grid-template-rows: repeat(2, 250px);
            gap: 1rem;
        }

        .gallery-item {
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
        }

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

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

        .gallery-item:nth-child(1) {
            grid-column: span 2;
            grid-row: span 2;
        }

        .gallery-item::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(44, 24, 16, 0.4), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

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

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                grid-template-rows: auto;
            }

            .gallery-item {
                height: 200px;
            }

            .gallery-item:nth-child(1) {
                grid-column: span 2;
                height: 250px;
            }
        }

        /* ==================== CTA BANNER ==================== */
        .cta-banner {
            background: linear-gradient(135deg, var(--terracotta), var(--brown-medium));
            padding: 5rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }

        .cta-banner h2 {
            color: var(--white);
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            margin-bottom: 1rem;
            position: relative;
        }

        .cta-banner p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.1rem;
            max-width: 500px;
            margin: 0 auto 2rem;
            position: relative;
        }

        .cta-banner .btn {
            background: var(--white);
            color: var(--terracotta);
            position: relative;
        }

        .cta-banner .btn:hover {
            background: var(--cream);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
        }